This commit is contained in:
Jesse Boyd 2017-10-31 23:26:18 +11:00
commit 22429fc3e0
No known key found for this signature in database
GPG Key ID: 59F1DE6293AF6E1F

View File

@ -207,7 +207,7 @@ public class Location implements Cloneable, Comparable<Location> {
return false;
}
Location l = (Location) o;
return this.x == l.getX() && this.y == l.getY() && this.z == l.getZ() && this.world.equals(l.getWorld()) && this.yaw == l.getY()
return this.x == l.getX() && this.y == l.getY() && this.z == l.getZ() && this.world.equals(l.getWorld()) && this.yaw == l.getYaw()
&& this.pitch == l.getPitch();
}