geforkt von Mirrors/FastAsyncWorldEdit
Made BlockWorldVector.equals accept all kinds of Vectors, not just WorldVectors.
This should make all those compareTo==0 things unnecessary.
Dieser Commit ist enthalten in:
Ursprung
b28fdbfe4e
Commit
d7d8930cd4
@ -110,10 +110,10 @@ public class BlockWorldVector extends WorldVector {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object obj) {
|
public boolean equals(Object obj) {
|
||||||
if (!(obj instanceof WorldVector)) {
|
if (!(obj instanceof Vector)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
WorldVector other = (WorldVector) obj;
|
Vector other = (Vector) obj;
|
||||||
return (int) other.getX() == (int) this.x && (int) other.getY() == (int) this.y
|
return (int) other.getX() == (int) this.x && (int) other.getY() == (int) this.y
|
||||||
&& (int) other.getZ() == (int) this.z;
|
&& (int) other.getZ() == (int) this.z;
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren