mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 11:38:29 +01:00
Implemented world.getSeaLevel, made getHeight load from world instead of hardcoded
This commit is contained in:
parent
1fbd439dc5
commit
fad2656c63
@ -796,7 +796,11 @@ public class CraftWorld implements World {
|
||||
}
|
||||
|
||||
public int getMaxHeight() {
|
||||
return 128;
|
||||
return world.height;
|
||||
}
|
||||
|
||||
public int getSeaLevel() {
|
||||
return world.seaLevel;
|
||||
}
|
||||
|
||||
public boolean getKeepSpawnInMemory() {
|
||||
|
Loading…
Reference in New Issue
Block a user