diff --git a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/world/ServerLevelWrapper.java b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/world/ServerLevelWrapper.java index 2e9801db4..3c7348ec4 100644 --- a/common/src/main/java/com/seibel/distanthorizons/common/wrappers/world/ServerLevelWrapper.java +++ b/common/src/main/java/com/seibel/distanthorizons/common/wrappers/world/ServerLevelWrapper.java @@ -97,7 +97,7 @@ public class ServerLevelWrapper implements IServerLevelWrapper public String getDimensionName() { return this.level.dimension().location().toString(); } @Override - public int getHashedSeed() { return (int) this.level.getBiomeManager().biomeZoomSeed; } + public long getHashedSeed() { return (int) this.level.getBiomeManager().biomeZoomSeed; } @Override public String getDhIdentifier() { return this.getDimensionName(); }