summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/Slot.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/minecraft/server/Slot.java')
-rw-r--r--src/main/java/net/minecraft/server/Slot.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/net/minecraft/server/Slot.java b/src/main/java/net/minecraft/server/Slot.java
index 2371c243..ac9e04cf 100644
--- a/src/main/java/net/minecraft/server/Slot.java
+++ b/src/main/java/net/minecraft/server/Slot.java
@@ -43,7 +43,7 @@ public class Slot {
return this.inventory.getItem(this.index);
}
- public boolean e() {
+ public boolean hasItem() {
return this.getItem() != null;
}
@@ -56,7 +56,7 @@ public class Slot {
this.inventory.update();
}
- public int a() {
+ public int getMaxStackSize() {
return this.inventory.getMaxStackSize();
}
@@ -68,7 +68,7 @@ public class Slot {
return iinventory == this.inventory && i == this.index;
}
- public boolean a(EntityHuman entityhuman) {
+ public boolean isAllowed(EntityHuman entityhuman) {
return true;
}
}