From 2726696652179a5ead7dc07dd39edf7dfda687f7 Mon Sep 17 00:00:00 2001 From: mbax Date: Mon, 4 Nov 2013 07:07:38 -0600 Subject: Update CraftBukkit to Minecraft 1.7.2 --- .../java/net/minecraft/server/InventoryLargeChest.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/main/java/net/minecraft/server/InventoryLargeChest.java') diff --git a/src/main/java/net/minecraft/server/InventoryLargeChest.java b/src/main/java/net/minecraft/server/InventoryLargeChest.java index 3eee4b8f..575d59fb 100644 --- a/src/main/java/net/minecraft/server/InventoryLargeChest.java +++ b/src/main/java/net/minecraft/server/InventoryLargeChest.java @@ -72,12 +72,12 @@ public class InventoryLargeChest implements IInventory { return this.left == iinventory || this.right == iinventory; } - public String getName() { - return this.left.c() ? this.left.getName() : (this.right.c() ? this.right.getName() : this.a); + public String getInventoryName() { + return this.left.k_() ? this.left.getInventoryName() : (this.right.k_() ? this.right.getInventoryName() : this.a); } - public boolean c() { - return this.left.c() || this.right.c(); + public boolean k_() { + return this.left.k_() || this.right.k_(); } public ItemStack getItem(int i) { @@ -118,9 +118,9 @@ public class InventoryLargeChest implements IInventory { this.right.startOpen(); } - public void g() { - this.left.g(); - this.right.g(); + public void l_() { + this.left.l_(); + this.right.l_(); } public boolean b(int i, ItemStack itemstack) { -- cgit v1.2.3