Updated item/block lists, added Bukkit API for other plugins, moved some things around.

This commit is contained in:
sk89q
2011-01-16 09:39:11 -08:00
parent 3b9fe1b0c4
commit 80d7bbfa3c
19 changed files with 473 additions and 101 deletions

View File

@@ -544,7 +544,7 @@ public class Vector {
return false;
}
Vector other = (Vector)obj;
return other.x == this.x && other.y == this.y && other.z == this.z;
return other.getX() == this.x && other.getY() == this.y && other.getZ() == this.z;
}