Skip to content

Commit

Permalink
Add negative y support
Browse files Browse the repository at this point in the history
  • Loading branch information
Vilsu221 authored and octylFractal committed Sep 14, 2024
1 parent e07633c commit 485bb41
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,16 @@ public int hashCode() {
return getWorld().hashCode();
}

@Override
public int getMaxY() {
return getWorld().max().y();
}

@Override
public int getMinY() {
return getWorld().min().y();
}

@Override
public boolean equals(Object o) {
if (o == null) {
Expand Down

0 comments on commit 485bb41

Please sign in to comment.