(ItemStack aStack)
| 178 | public static ItemStack name_(ItemStack aStack, String aName) {aStack.setStackDisplayName(aName); return aStack;} |
| 179 | |
| 180 | public static NBTTagCompound nbt (ItemStack aStack) {return aStack == null ? null : nbt_(aStack);} |
| 181 | public static NBTTagCompound nbt_(ItemStack aStack) {return aStack.getTagCompound();} |
| 182 | public static ItemStack nbt (ItemStack aStack, NBTTagCompound aNBT) {return aStack == null ? null : nbt_(aStack, aNBT);} |
| 183 | public static ItemStack nbt_(ItemStack aStack, NBTTagCompound aNBT) {return UT.NBT.set(aStack, aNBT);} |
no test coverage detected