summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/InventoryCrafting.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/minecraft/server/InventoryCrafting.java')
-rw-r--r--src/main/java/net/minecraft/server/InventoryCrafting.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/net/minecraft/server/InventoryCrafting.java b/src/main/java/net/minecraft/server/InventoryCrafting.java
index e6411c16..9151b8bf 100644
--- a/src/main/java/net/minecraft/server/InventoryCrafting.java
+++ b/src/main/java/net/minecraft/server/InventoryCrafting.java
@@ -8,7 +8,7 @@ public class InventoryCrafting implements IInventory {
// CraftBukkit start
public ItemStack[] getContents() {
- return items;
+ return this.items;
}
// CraftBukkit end
@@ -42,7 +42,7 @@ public class InventoryCrafting implements IInventory {
return "Crafting";
}
- public ItemStack a(int i, int j) {
+ public ItemStack splitStack(int i, int j) {
if (this.items[i] != null) {
ItemStack itemstack;