SPIGOT-2855: Empty ItemStacks in PlayerDeathEvent drops

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2016-11-28 12:34:21 +11:00
parent ad94b29ad6
commit 3f8ec9a859

View File

@ -182,7 +182,7 @@
+ +
+ if (!keepInventory) { + if (!keepInventory) {
+ for (ItemStack item : this.inventory.getContents()) { + for (ItemStack item : this.inventory.getContents()) {
+ if (!EnchantmentManager.c(item)) { // PAIL: shouldNotDrop (Vanishing enchant) + if (!item.isEmpty() && !EnchantmentManager.c(item)) { // PAIL: shouldNotDrop (Vanishing enchant)
+ loot.add(CraftItemStack.asCraftMirror(item)); + loot.add(CraftItemStack.asCraftMirror(item));
+ } + }
+ } + }