diff --git a/core/src/io/anuke/mindustry/mod/ContentParser.java b/core/src/io/anuke/mindustry/mod/ContentParser.java index 87f094e481..fecd7dcca4 100644 --- a/core/src/io/anuke/mindustry/mod/ContentParser.java +++ b/core/src/io/anuke/mindustry/mod/ContentParser.java @@ -63,7 +63,8 @@ public class ContentParser{ }, ContentType.item, parser(ContentType.item, Item::new), ContentType.liquid, parser(ContentType.liquid, Liquid::new), - ContentType.mech, parser(ContentType.mech, Mech::new) + ContentType.mech, parser(ContentType.mech, Mech::new), + ContentType.zone, parser(ContentType.zone, Zone::new) ); private TypeParser parser(ContentType type, Function constructor){