diff --git a/core/src/io/anuke/mindustry/mod/ContentParser.java b/core/src/io/anuke/mindustry/mod/ContentParser.java index 85239beb4d..642527434a 100644 --- a/core/src/io/anuke/mindustry/mod/ContentParser.java +++ b/core/src/io/anuke/mindustry/mod/ContentParser.java @@ -341,8 +341,8 @@ public class ContentParser{ if(contentTypes.isEmpty()){ init(); } - //add comments starting with # - json = json.replaceAll("##.*?\n","\n"); + //add comments starting with ## + json = json.replaceAll("//.*?\n","\n"); JsonValue value = parser.fromJson(null, json); if(!parsers.containsKey(type)){