Fixed animals not spawning when spawn-monsters is set to false.

By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
CraftBukkit/Spigot 2011-05-22 15:29:55 -04:00
parent 76ba24db30
commit 31ed3023b5

View file

@ -293,7 +293,7 @@ public final class CraftServer implements Server {
console.propertyManager = config;
boolean animals = config.getBoolean("spawn-monsters", console.spawnAnimals);
boolean animals = config.getBoolean("spawn-animals", console.spawnAnimals);
boolean monsters = config.getBoolean("spawn-monsters", console.worlds.get(0).spawnMonsters > 0);
console.onlineMode = config.getBoolean("online-mode", console.onlineMode);