geforkt von Mirrors/Paper
Fixed multiworld difficulty.
World difficulty was incorrectly being set to 0 or 1 on reload depending on spawn-monsters instead of the difficulty server property.
Dieser Commit ist enthalten in:
Ursprung
7c5007c016
Commit
11b388ff39
@ -372,6 +372,7 @@ public final class CraftServer implements Server {
|
||||
|
||||
boolean animals = config.getBoolean("spawn-animals", console.spawnAnimals);
|
||||
boolean monsters = config.getBoolean("spawn-monsters", console.worlds.get(0).difficulty > 0);
|
||||
int difficulty = config.getInt("difficulty", console.worlds.get(0).difficulty);
|
||||
|
||||
console.onlineMode = config.getBoolean("online-mode", console.onlineMode);
|
||||
console.spawnAnimals = config.getBoolean("spawn-animals", console.spawnAnimals);
|
||||
@ -379,7 +380,7 @@ public final class CraftServer implements Server {
|
||||
console.allowFlight = config.getBoolean("allow-flight", console.allowFlight);
|
||||
|
||||
for (WorldServer world : console.worlds) {
|
||||
world.difficulty = monsters ? 1 : 0;
|
||||
world.difficulty = difficulty;
|
||||
world.setSpawnFlags(monsters, animals);
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren