Fixed error in CraftInventory.setContents().

This commit is contained in:
sk89q 2011-01-16 13:29:30 -08:00
parent d048167d16
commit 74d746b6c5

View file

@ -50,7 +50,7 @@ public class CraftInventory implements org.bukkit.inventory.Inventory {
for (int i = 0; i < items.length; i++ ) {
ItemStack item = items[i];
if (item == null) {
if (item == null || item.getTypeId() <= 0) {
mcItems[i] = null;
} else {
mcItems[i] = new net.minecraft.server.ItemStack( item.getTypeId(), item.getAmount(), item.getDamage());