geforkt von Mirrors/Paper
Implemented world.getSeaLevel, made getHeight load from world instead of hardcoded
Dieser Commit ist enthalten in:
Ursprung
1fbd439dc5
Commit
fad2656c63
@ -796,7 +796,11 @@ public class CraftWorld implements World {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public int getMaxHeight() {
|
public int getMaxHeight() {
|
||||||
return 128;
|
return world.height;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getSeaLevel() {
|
||||||
|
return world.seaLevel;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean getKeepSpawnInMemory() {
|
public boolean getKeepSpawnInMemory() {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren