Fix beacons un-rendering when unloading LODs

This commit is contained in:
James Seibel
2024-07-07 19:45:47 -05:00
parent f1053251b4
commit e2943fdcaf
3 changed files with 3 additions and 3 deletions
@@ -180,7 +180,7 @@ public class ClientLevelWrapper implements IClientLevelWrapper
public boolean hasSkyLight() { return this.level.dimensionType().hasSkyLight(); }
@Override
public int getHeight() { return this.level.getHeight(); }
public int getMaxHeight() { return this.level.getHeight(); }
@Override
public int getMinHeight()
@@ -117,7 +117,7 @@ public class ServerLevelWrapper implements IServerLevelWrapper
}
@Override
public int getHeight()
public int getMaxHeight()
{
return level.getHeight();
}