From 44b0ef408f8190bc05fd2b15295930ad69f64d54 Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 27 Aug 2020 20:21:20 -0400 Subject: [PATCH] testing BE builds --- core/src/mindustry/content/TechTree.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/src/mindustry/content/TechTree.java b/core/src/mindustry/content/TechTree.java index 30baf7e541..38e67d0b4e 100644 --- a/core/src/mindustry/content/TechTree.java +++ b/core/src/mindustry/content/TechTree.java @@ -585,9 +585,7 @@ public class TechTree implements ContentList{ public final Seq children = new Seq<>(); TechNode(@Nullable TechNode ccontext, UnlockableContent content, ItemStack[] requirements, Runnable children){ - if(ccontext != null){ - ccontext.children.add(this); - } + if(ccontext != null) ccontext.children.add(this); this.parent = ccontext; this.content = content;