Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
PrinzPizza42 committed Jan 6, 2025
1 parent 3fe4e05 commit 73ad6b1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/de/j/deathMinigames/settings/AnvilUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public void showInventory(Player playerToShowTheInvTo) {
}

public boolean compareLocIDTo(Location loc) {
if(loc.getBlockX() == this.loc.getBlockX() && loc.getBlockZ() == this.loc.getBlockZ()) return true;
else return false;
return loc.getBlockX() == this.loc.getBlockX() && loc.getBlockZ() == this.loc.getBlockZ();
}
}

0 comments on commit 73ad6b1

Please sign in to comment.