mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-25 11:46:54 +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) {
|
if (ignoreY) {
|
||||||
startY = world.getMaxHeight();
|
startY = world.getMaxHeight();
|
||||||
} else {
|
} 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) {
|
for (List<CachedChunk> sub : parts) {
|
||||||
|
Loading…
Reference in New Issue
Block a user