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

This commit is contained in:
Nathan Adams
2012-03-01 13:35:36 +00:00
parent fb668b428b
commit a726f6de3e
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