Fix ItemStackWrapper ignoring stack's NBT (#1155)

who even made this class i mean come on this is such a stupid thing to do like omgwtf what a moron
This commit is contained in:
Nicholas Ignoffo 2017-06-21 19:14:25 -07:00
parent 16d4609a48
commit 8c12b48695

View file

@ -56,11 +56,11 @@ public class ItemStackWrapper
public static ItemStackWrapper getHolder(ItemStack stack)
{
if (stack.isEmpty())
{
return null;
}
return new ItemStackWrapper(stack.getItem(), stack.getCount(), stack.getItemDamage());
ItemStackWrapper wrapper = new ItemStackWrapper(stack.getItem(), stack.getCount(), stack.getItemDamage());
wrapper.setNbtTag(stack.getTagCompound());
return wrapper;
}
public ItemStack toStack()