diff --git a/core/src/io/anuke/mindustry/content/Blocks.java b/core/src/io/anuke/mindustry/content/Blocks.java index 17377204c5..7d96c661b4 100644 --- a/core/src/io/anuke/mindustry/content/Blocks.java +++ b/core/src/io/anuke/mindustry/content/Blocks.java @@ -76,7 +76,7 @@ public class Blocks implements ContentList{ duo, scatter, scorch, hail, arc, wave, lancer, swarmer, salvo, fuse, ripple, cyclone, spectre, meltdown, //units - commandCenter, rallyPoint, draugFactory, spiritFactory, phantomFactory, wraithFactory, ghoulFactory, revenantFactory, daggerFactory, crawlerFactory, titanFactory, + commandCenter, draugFactory, spiritFactory, phantomFactory, wraithFactory, ghoulFactory, revenantFactory, daggerFactory, crawlerFactory, titanFactory, fortressFactory, repairPoint, //upgrades @@ -1652,13 +1652,6 @@ public class Blocks implements ContentList{ health = size * size * 55; }}; - //TODO unused, but may be useful later - rallyPoint = new RallyPoint("rally-point"){{ - //requirements(Category.units, ItemStack.with(Items.lead, 100, Items.silicon, 100, Items.graphite, 50)); - size = 2; - health = size * size * 85; - }}; - wraithFactory = new UnitFactory("wraith-factory"){{ requirements(Category.units, ItemStack.with(Items.titanium, 30, Items.lead, 40, Items.silicon, 45)); type = UnitTypes.wraith; diff --git a/core/src/io/anuke/mindustry/game/Version.java b/core/src/io/anuke/mindustry/game/Version.java index 3cbd43f52b..1df671ae06 100644 --- a/core/src/io/anuke/mindustry/game/Version.java +++ b/core/src/io/anuke/mindustry/game/Version.java @@ -33,7 +33,7 @@ public class Version{ PropertiesUtils.load(map, file.reader()); type = map.get("type"); - number = Integer.parseInt(map.get("number")); + number = Integer.parseInt(map.get("number", "4")); modifier = map.get("modifier"); if(map.get("build").contains(".")){ String[] split = map.get("build").split("\\.");