replace the only <= with <
This commit is contained in:
parent
c66d21da90
commit
38526b2e65
@ -261,7 +261,7 @@ public class BuildData
|
||||
|
||||
private String getBooleanForDebug(boolean bool) {
|
||||
bool = !bool;
|
||||
|
||||
|
||||
if (bool) {
|
||||
return C.cGreen + "true";
|
||||
}
|
||||
@ -275,7 +275,7 @@ public class BuildData
|
||||
Bukkit.broadcastMessage((C.cGray + "Top right corner: " + C.cYellow + CornerTopRight.toVector().toString()));
|
||||
|
||||
Bukkit.broadcastMessage(C.cGray + "Checking relative to BL x: " + getBooleanForDebug(vec.getBlockX() <= CornerBottomLeft.getBlockX()));
|
||||
if (vec.getBlockX() <= CornerBottomLeft.getBlockX())
|
||||
if (vec.getBlockX() < CornerBottomLeft.getBlockX())
|
||||
return false;
|
||||
|
||||
Bukkit.broadcastMessage(C.cGray + "Checking relative to BL y: " + getBooleanForDebug(vec.getBlockY() < CornerBottomLeft.getBlockY()));
|
||||
|
Loading…
Reference in New Issue
Block a user