Updated item/block lists, added Bukkit API for other plugins, moved some things around.
This commit is contained in:
@@ -73,8 +73,8 @@ public class BlockVector extends Vector {
|
||||
return false;
|
||||
}
|
||||
Vector other = (Vector)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;
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user