SPIGOT-6357: Add World#getMinHeight

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2021-03-28 19:31:50 +11:00
parent 90df44b39a
commit 15305e6842

View File

@ -1856,6 +1856,11 @@ public class CraftWorld implements World {
return world.getChunkProvider().allowMonsters;
}
@Override
public int getMinHeight() {
return 0;
}
@Override
public int getMaxHeight() {
return world.getBuildHeight();