From 2d70e00193c9362f12b1494417195aa75a63e999 Mon Sep 17 00:00:00 2001 From: Anuken Date: Thu, 8 Oct 2020 15:15:47 -0400 Subject: [PATCH] getChild -> remove --- core/src/mindustry/mod/ContentParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/mod/ContentParser.java b/core/src/mindustry/mod/ContentParser.java index 45faf7449c..43493bdfec 100644 --- a/core/src/mindustry/mod/ContentParser.java +++ b/core/src/mindustry/mod/ContentParser.java @@ -555,7 +555,7 @@ public class ContentParser{ if(stripType) jsonMap.remove("type"); if(object instanceof UnlockableContent unlock){ - JsonValue research = jsonMap.getChild("research"); + JsonValue research = jsonMap.remove("research"); //add research tech node if(research != null){ String researchName;