Finalized map number

This commit is contained in:
Anuken 2019-07-27 10:52:46 -04:00
parent 7bf6099528
commit aa3e7a8ef5
5 changed files with 1 additions and 2 deletions

BIN
core/assets/maps/fork.msav Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -770,7 +770,6 @@ public class Blocks implements ContentList{
thruster = new Wall("thruster"){{ thruster = new Wall("thruster"){{
requirements(Category.defense, () -> state.rules.infiniteResources, ItemStack.with()); requirements(Category.defense, () -> state.rules.infiniteResources, ItemStack.with());
health = 55 * 16 * wallHealthMultiplier; health = 55 * 16 * wallHealthMultiplier;
rotate = true;
size = 4; size = 4;
}}; }};

View File

@ -20,7 +20,7 @@ import static io.anuke.mindustry.Vars.*;
public class Maps implements Disposable{ public class Maps implements Disposable{
/** List of all built-in maps. Filenames only. */ /** List of all built-in maps. Filenames only. */
private static String[] defaultMapNames = {"fortress", "labyrinth", "islands", "tendrils", "caldera", "wasteland", "shattered", "canyon", "spiral", "triad", "veins", "glacier"}; private static String[] defaultMapNames = {"maze", "fortress", "labyrinth", "islands", "tendrils", "caldera", "wasteland", "shattered", "fork", "triad", "veins", "glacier"};
/** All maps stored in an ordered array. */ /** All maps stored in an ordered array. */
private Array<Map> maps = new Array<>(); private Array<Map> maps = new Array<>();
/** Serializer for meta. */ /** Serializer for meta. */