geforkt von Mirrors/FastAsyncWorldEdit
Fixed issue with BlockWorldVector causing java.lang.VerifyError due to how Bukkit loads plugins.
Dieser Commit ist enthalten in:
Ursprung
ecb2942f1d
Commit
1568c3f890
@ -82,8 +82,8 @@ public class BlockWorldVector extends WorldVector {
|
||||
return false;
|
||||
}
|
||||
WorldVector other = (WorldVector)obj;
|
||||
return (int)other.x == (int)this.x && (int)other.y == (int)this.y
|
||||
&& (int)other.z == (int)this.z;
|
||||
return (int)other.getX() == (int)this.x && (int)other.getY() == (int)this.y
|
||||
&& (int)other.getZ() == (int)this.z;
|
||||
|
||||
}
|
||||
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren