diff --git a/src/main/java/com/seibel/lod/core/wrapperInterfaces/world/IWorldWrapper.java b/src/main/java/com/seibel/lod/core/wrapperInterfaces/world/IWorldWrapper.java index 2e3510bb1..ba6214e62 100644 --- a/src/main/java/com/seibel/lod/core/wrapperInterfaces/world/IWorldWrapper.java +++ b/src/main/java/com/seibel/lod/core/wrapperInterfaces/world/IWorldWrapper.java @@ -52,7 +52,10 @@ public interface IWorldWrapper int getSeaLevel(); - short getMinHeight(); + default short getMinHeight() + { + return 0; + } /** @throws UnsupportedOperationException if the WorldWrapper isn't for a ServerWorld */ File getSaveFolder() throws UnsupportedOperationException;