mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-22 02:08:34 +01:00
[Fixed] Island Scan MinY Level fixed. Instead of 0 it will now fetch from World.MinHeight.
This commit is contained in:
parent
373d5267d4
commit
389b9087fd
@ -114,7 +114,7 @@ public final class BlockScanner extends BukkitRunnable {
|
||||
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) {
|
||||
|
Loading…
Reference in New Issue
Block a user