Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
LtxProgrammer committed Oct 7, 2024
1 parent 2bba0fe commit ef2ee7e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ public GoToWaterGoal(AbstractAquaticEntity entity, double speed) {
public boolean canUse() {
if (this.mob.isInWater()) {
return false;
} else if (mob.wantsToSwim()) {
return true;
} else if (!mob.wantsToSwim()) {
return false;
} else if (this.mob.getTarget() != null) {
return false;
} else {
Expand Down

0 comments on commit ef2ee7e

Please sign in to comment.