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

(cherry picked from commit 8c12b48)
This commit is contained in:
Nicholas Ignoffo 2017-06-21 19:14:25 -07:00
parent f18b60d062
commit f27511c1d1

View file

@ -8,6 +8,7 @@ import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.List;
@ -51,14 +52,15 @@ public class ItemStackWrapper
this(blockStack.getBlock(), 1, blockStack.getMeta());
}
@Nullable
public static ItemStackWrapper getHolder(ItemStack stack)
{
if (stack == null)
{
return null;
}
return new ItemStackWrapper(stack.getItem(), stack.stackSize, stack.getItemDamage());
ItemStackWrapper wrapper = new ItemStackWrapper(stack.getItem(), stack.stackSize, stack.getItemDamage());
wrapper.setNbtTag(stack.getTagCompound());
return wrapper;
}
public ItemStack toStack()