Fix -64 offset color bug: Impl' getMinHeight()

It calls works by calling getMinBuildHeight()
This commit is contained in:
tom lee
2021-12-16 18:39:58 +08:00
parent 3cfbb69dd9
commit 17c662b10f
@@ -137,6 +137,12 @@ public class WorldWrapper implements IWorldWrapper
return world.getHeight();
}
@Override
public short getMinHeight()
{
return (short) world.getMinBuildHeight();
}
/** @throws UnsupportedOperationException if the WorldWrapper isn't for a ServerWorld */
@Override
public File getSaveFolder() throws UnsupportedOperationException