Fix reversed conditional (#1138)
This commit is contained in:
parent
f01798fb46
commit
03ab872f6d
|
|
@ -731,8 +731,13 @@ public class Claim
|
||||||
if (!Objects.equals(location.getWorld(), this.lesserBoundaryCorner.getWorld())) return false;
|
if (!Objects.equals(location.getWorld(), this.lesserBoundaryCorner.getWorld())) return false;
|
||||||
|
|
||||||
int x = (int) location.getX();
|
int x = (int) location.getX();
|
||||||
int y = (int) (ignoreHeight ? getLesserBoundaryCorner().getY() : location.getY());
|
|
||||||
int z = (int) location.getZ();
|
int z = (int) location.getZ();
|
||||||
|
int y;
|
||||||
|
if (ignoreHeight) {
|
||||||
|
y = location.getBlockY();
|
||||||
|
} else {
|
||||||
|
y = getLesserBoundaryCorner().getBlockY();
|
||||||
|
}
|
||||||
|
|
||||||
//main check
|
//main check
|
||||||
if (!new BoundingBox(this).contains(x, y, z)) return false;
|
if (!new BoundingBox(this).contains(x, y, z)) return false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user