Update CraftBukkit to Minecraft 1.4.4.

This commit is contained in:
Travis Watkins
2012-11-06 06:05:28 -06:00
parent a0c3b4f9d1
commit 7f7192f8fd
169 changed files with 3295 additions and 2774 deletions

View File

@@ -68,6 +68,10 @@ public class InventoryLargeChest implements IInventory {
return this.left.getSize() + this.right.getSize();
}
public boolean a(IInventory iinventory) {
return this.left == iinventory || this.right == iinventory;
}
public String getName() {
return this.a;
}
@@ -101,8 +105,8 @@ public class InventoryLargeChest implements IInventory {
this.right.update();
}
public boolean a(EntityHuman entityhuman) {
return this.left.a(entityhuman) && this.right.a(entityhuman);
public boolean a_(EntityHuman entityhuman) {
return this.left.a_(entityhuman) && this.right.a_(entityhuman);
}
public void startOpen() {