Fixed an issue where dropped items did not retain custom NBT data.

This commit is contained in:
Glitchfinder 2012-12-31 19:57:21 -08:00
parent d33334708d
commit 707a388c51

View File

@ -253,7 +253,7 @@ public class Misc {
return; return;
} }
location.getWorld().dropItemNaturally(location, itemStack); location.getWorld().dropItemNaturally(location, itemStack).setItemStack(itemStack);
} }
/** /**