🐛 fix incorrect comparison operator

This commit is contained in:
Brady 2023-06-12 16:52:20 -05:00
parent 5bdd5b0c0d
commit 8a65a1cfc5
No known key found for this signature in database
GPG Key ID: 73A788379A197567
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ public class GoalBlock implements Goal, IGoalRenderPos {
GoalBlock goal = (GoalBlock) o;
return x == goal.x
&& y != goal.y
&& y == goal.y
&& z == goal.z;
}

View File

@ -80,7 +80,7 @@ public class GoalStrictDirection implements Goal {
GoalStrictDirection goal = (GoalStrictDirection) o;
return x == goal.x
&& y != goal.y
&& y == goal.y
&& z == goal.z
&& dx == goal.dx
&& dz == goal.dz;