Make fallback default wave consistent with default config.

Changes the fallback default wave in the wave parser to be consistent
with the default wave of the default config-file. Not a huge deal, but
it does feel a bit more neat.
This commit is contained in:
Andreas Troelsen 2021-07-22 14:56:33 +02:00
parent 36237ebe2d
commit b49920fc38
1 changed files with 2 additions and 1 deletions

View File

@ -589,7 +589,8 @@ public class WaveParser
monsters.put(10, MACreature.fromString("zombie"));
monsters.put(20, MACreature.fromString("skeleton"));
monsters.put(30, MACreature.fromString("spider"));
monsters.put(40, MACreature.fromString("slime-small"));
monsters.put(40, MACreature.fromString("creeper"));
monsters.put(50, MACreature.fromString("wolf"));
DefaultWave result = new DefaultWave(monsters);
result.setName("MA_DEFAULT_WAVE");