Filter null/AIR from items dropped on death. Fixes: BUKKIT-653

This commit is contained in:
Erik Broes 2012-01-29 13:37:32 +01:00
parent 4c2f57592d
commit 3173b68bbe

View File

@ -377,6 +377,8 @@ public class CraftEventFactory {
victim.newExp = event.getNewExp();
for (org.bukkit.inventory.ItemStack stack : event.getDrops()) {
if (stack == null || stack.getType() == Material.AIR) continue;
world.dropItemNaturally(entity.getLocation(), stack);
}