Method
setBlueprintCrafting
(ItemStack aStack, ItemStack... aBlueprint)
Source from the content-addressed store, hash-verified
| 2054 | } |
| 2055 | |
| 2056 | public static NBTTagCompound setBlueprintCrafting(ItemStack aStack, ItemStack... aBlueprint) { |
| 2057 | NBTTagCompound tNBT = getNBT(aStack); |
| 2058 | setBlueprintCrafting(tNBT, aBlueprint); |
| 2059 | set(aStack, tNBT); |
| 2060 | return tNBT; |
| 2061 | } |
| 2062 | public static ItemStack[] getBlueprintCrafting(ItemStack aStack) { |
| 2063 | return getBlueprintCrafting(getNBT(aStack)); |
| 2064 | } |
Tested by
no test coverage detected