(ItemStack aEmpty, ItemStack aFull, ItemStack aContent)
| 203 | } |
| 204 | |
| 205 | public static boolean box(ItemStack aEmpty, ItemStack aFull, ItemStack aContent) { |
| 206 | if (ST.invalid(aEmpty) || ST.invalid(aFull) || ST.invalid(aContent)) return F; |
| 207 | Boxinator .addRecipe2(T, 16, 16, aContent, aEmpty, aFull); |
| 208 | return T; |
| 209 | } |
| 210 | public static boolean unbox(ItemStack aEmpty, ItemStack aFull, ItemStack aContent) { |
| 211 | if (ST.invalid(aEmpty) || ST.invalid(aFull) || ST.invalid(aContent)) return F; |
| 212 | Unboxinator.addRecipe1(T, 16, 16, aFull, aContent, aEmpty); |
no test coverage detected