getContents now returns null for items whose underlying item is null

This commit is contained in:
Tahg 2011-04-06 12:45:03 -04:00
parent 8385b1436e
commit 92e3957a0e

View file

@ -35,7 +35,7 @@ public class CraftInventory implements org.bukkit.inventory.Inventory {
net.minecraft.server.ItemStack[] mcItems = getInventory().getContents(); net.minecraft.server.ItemStack[] mcItems = getInventory().getContents();
for (int i = 0; i < mcItems.length; i++ ) { for (int i = 0; i < mcItems.length; i++ ) {
items[i] = new CraftItemStack(mcItems[i]); items[i] = mcItems[i] == null ? null : new CraftItemStack(mcItems[i]);
} }
return items; return items;