Loads an ItemStack properly.
(NBTTagCompound aNBT, String aTagName)
| 1259 | |
| 1260 | /** Loads an ItemStack properly. */ |
| 1261 | public static ItemStack load(NBTTagCompound aNBT, String aTagName) { |
| 1262 | return aNBT == null ? null : load(aNBT.getCompoundTag(aTagName), NI); |
| 1263 | } |
| 1264 | /** Loads an ItemStack properly. */ |
| 1265 | public static ItemStack load(NBTTagCompound aNBT, String aTagName, ItemStack aDefault) { |
| 1266 | return aNBT == null ? null : load(aNBT.getCompoundTag(aTagName), aDefault); |
no test coverage detected