mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +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;
|
||||
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user