Don't add items with an amount of 0 or lower to the inventory.

This commit is contained in:
snowleo 2011-07-01 01:31:20 +02:00
parent d95d7745ad
commit 5346b112a4

View File

@ -80,7 +80,7 @@ public final class InventoryWorkaround
ItemStack[] combined = new ItemStack[items.length];
for (int i = 0; i < items.length; i++)
{
if (items[i] == null)
if (items[i] == null || items[i].getAmount() < 1)
{
continue;
}