mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 13:36:16 +01:00
Fixed animals not spawning when spawn-monsters is set to false.
This commit is contained in:
parent
8b0924bbb4
commit
949634ad67
@ -293,7 +293,7 @@ public final class CraftServer implements Server {
|
|||||||
|
|
||||||
console.propertyManager = config;
|
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);
|
boolean monsters = config.getBoolean("spawn-monsters", console.worlds.get(0).spawnMonsters > 0);
|
||||||
|
|
||||||
console.onlineMode = config.getBoolean("online-mode", console.onlineMode);
|
console.onlineMode = config.getBoolean("online-mode", console.onlineMode);
|
||||||
|
Loading…
Reference in New Issue
Block a user