Saves an ItemStack properly.
(String aTagName, Block aBlock)
| 1289 | |
| 1290 | /** Saves an ItemStack properly. */ |
| 1291 | public static NBTTagCompound save(String aTagName, Block aBlock) { |
| 1292 | NBTTagCompound aNBT = UT.NBT.make(); |
| 1293 | NBTTagCompound tNBT = save(make(aBlock, 1, 0)); |
| 1294 | if (tNBT == null) aNBT.removeTag(aTagName); else aNBT.setTag(aTagName, tNBT); |
| 1295 | return aNBT; |
| 1296 | } |
| 1297 | /** Saves an ItemStack properly. */ |
| 1298 | public static NBTTagCompound save(String aTagName, Block aBlock, long aStackSize) { |
| 1299 | NBTTagCompound aNBT = UT.NBT.make(); |
no test coverage detected