Potentially fixed inventory issues. This (should) fix issue BUKKIT-860

By: Nathan Adams <dinnerbone@dinnerbone.com>
This commit is contained in:
CraftBukkit/Spigot
2012-03-01 13:35:36 +00:00
parent 3d2e09290a
commit b61b3ff3a5
2 changed files with 4 additions and 4 deletions

View File

@@ -18,11 +18,11 @@ public class CraftInventoryCrafting extends CraftInventory implements CraftingIn
}
public IInventory getResultInventory() {
return inventory;
return resultInventory;
}
public IInventory getMatrixInventory() {
return resultInventory;
return inventory;
}
@Override