Skip to content

Commit

Permalink
Fixed bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
mosemister committed Jan 26, 2024
1 parent daa6d83 commit 87e073a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/core/utils/Bounds.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,6 @@ public boolean contains(int x, int y, int z) {
if (max.getY() < y) {
return false;
}
return max.getZ() > z;
return max.getZ() >= z;
}
}

0 comments on commit 87e073a

Please sign in to comment.