Update for Minecraft 1.8

This commit is contained in:
Dinnerbone
2011-09-15 01:23:52 +01:00
parent 54bcd1c1f3
commit 5b2c774edc
107 changed files with 4415 additions and 3504 deletions

View File

@@ -18,6 +18,14 @@ public class InventoryLargeChest implements IInventory {
public InventoryLargeChest(String s, IInventory iinventory, IInventory iinventory1) {
this.a = s;
if (iinventory == null) {
iinventory = iinventory1;
}
if (iinventory1 == null) {
iinventory1 = iinventory;
}
this.b = iinventory;
this.c = iinventory1;
}
@@ -55,7 +63,17 @@ public class InventoryLargeChest implements IInventory {
this.c.update();
}
public boolean a_(EntityHuman entityhuman) {
return this.b.a_(entityhuman) && this.c.a_(entityhuman);
public boolean a(EntityHuman entityhuman) {
return this.b.a(entityhuman) && this.c.a(entityhuman);
}
public void e() {
this.b.e();
this.c.e();
}
public void t_() {
this.b.t_();
this.c.t_();
}
}