mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-06-25 18:24:43 +02:00
Fix mistakes
This commit is contained in:
@ -293,7 +293,7 @@ public final class BlockUtils {
|
||||
World world = block.getWorld();
|
||||
|
||||
//pretty sure both height and min height are able to have blocks placed on them
|
||||
return block.getY() >= worldCompatibilityLayer.getMinWorldHeight(world) && block.getY() <= worldCompatibilityLayer.getMaxWorldHeight(world);
|
||||
return block.getY() >= worldCompatibilityLayer.getMinWorldHeight(world) && block.getY() < worldCompatibilityLayer.getMaxWorldHeight(world);
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user