13
0
geforkt von Mirrors/Paper

SPIGOT-2957 getSeaLevel() should return the real sea level, not a hard-coded value

By: Ryan Michela <deltahat@gmail.com>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2016-12-25 11:26:00 -05:00
Ursprung 83554f3290
Commit 6333307ee3

Datei anzeigen

@ -1226,7 +1226,7 @@ public class CraftWorld implements World {
}
public int getSeaLevel() {
return 64;
return world.K(); // PAIL: rename
}
public boolean getKeepSpawnInMemory() {