Skip to content

Commit

Permalink
[Fixed] Island Scan MinY Level fixed. Instead of 0 it will now fetch …
Browse files Browse the repository at this point in the history
…from World.MinHeight.
  • Loading branch information
TeamHRLive committed Mar 26, 2024
1 parent abfa779 commit e14233d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private BlockScanner(Map<World, List<CachedChunk>> snapshots,
if (ignoreY) {
startY = world.getMaxHeight();
} else {
startY = !ignoreLiquidsY && liquidSection.getBoolean("Enable") && !config.getBoolean("Island.Levelling.ScanLiquid") ? liquidSection.getInt("Height") + 1 : 0;
startY = !ignoreLiquidsY && liquidSection.getBoolean("Enable") && !config.getBoolean("Island.Levelling.ScanLiquid") ? liquidSection.getInt("Height") + 1 : world.getMinHeight();
}

for (List<CachedChunk> sub : parts) {
Expand Down

0 comments on commit e14233d

Please sign in to comment.