(ItemStack aContent, ItemStack aFull)
| 221 | |
| 222 | |
| 223 | public static boolean pack(ItemStack aContent, ItemStack aFull) { |
| 224 | if (ST.invalid(aFull) || ST.invalid(aContent)) return F; |
| 225 | Boxinator.addRecipe2(T, 16, 16, aContent, ST.tag(aContent.stackSize), aFull); |
| 226 | return T; |
| 227 | } |
| 228 | public static boolean pack(ItemStack aContent, long aAmount, ItemStack aFull) { |
| 229 | if (ST.invalid(aFull) || ST.invalid(aContent)) return F; |
| 230 | Boxinator.addRecipe2(T, 16, 16, ST.amount(aAmount, aContent), ST.tag(aAmount), aFull); |
no test coverage detected