uhhh
This commit is contained in:
@ -167,7 +167,7 @@ public class Game {
|
||||
aMaxZ = lastMinZ;
|
||||
}
|
||||
|
||||
if (location.getX() <= aMinX && location.getX() >= aMaxX && location.getZ() <= aMinZ && location.getZ() >= aMaxZ) {
|
||||
if (location.getX() >= aMinX && location.getX() <= aMaxX && location.getZ() >= aMinZ && location.getZ() <= aMaxZ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -188,7 +188,7 @@ public class Game {
|
||||
bMaxZ = lastMinZ;
|
||||
}
|
||||
|
||||
if (location.getX() <= bMinX && location.getX() >= bMaxX && location.getZ() <= bMinZ && location.getZ() >= bMaxZ) {
|
||||
if (location.getX() >= bMinX && location.getX() <= bMaxX && location.getZ() >= bMinZ && location.getZ() <= bMaxZ) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user