summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/InventoryLargeChest.java
diff options
context:
space:
mode:
authormbax <matt@phozop.net>2013-11-04 07:07:38 -0600
committerWesley Wolfe <weswolf@aol.com>2013-11-30 19:26:12 -0600
commit2726696652179a5ead7dc07dd39edf7dfda687f7 (patch)
treeff78e22fdd4fc01889a5f6cc482b599f965cd93a /src/main/java/net/minecraft/server/InventoryLargeChest.java
parentff8b70fbb7a96b9d2ff078afcf3b3ff90f200981 (diff)
downloadcraftbukkit-2726696652179a5ead7dc07dd39edf7dfda687f7.tar
craftbukkit-2726696652179a5ead7dc07dd39edf7dfda687f7.tar.gz
craftbukkit-2726696652179a5ead7dc07dd39edf7dfda687f7.tar.lz
craftbukkit-2726696652179a5ead7dc07dd39edf7dfda687f7.tar.xz
craftbukkit-2726696652179a5ead7dc07dd39edf7dfda687f7.zip
Update CraftBukkit to Minecraft 1.7.2
Diffstat (limited to 'src/main/java/net/minecraft/server/InventoryLargeChest.java')
-rw-r--r--src/main/java/net/minecraft/server/InventoryLargeChest.java14
1 files changed, 7 insertions, 7 deletions
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) {