(ItemStack aContent, ItemStack aFull)
| 277 | return compact(aContent, aAmount, aFull) && smash(aFull, aContent, aAmount); |
| 278 | } |
| 279 | public static boolean compactunpack(ItemStack aContent, ItemStack aFull) { |
| 280 | return compact(aContent, aFull) && unpack(aFull, aContent); |
| 281 | } |
| 282 | public static boolean compactunpack(ItemStack aContent, long aAmount, ItemStack aFull) { |
| 283 | return compact(aContent, aAmount, aFull) && unpack(aFull, ST.amount(aAmount, aContent)); |
| 284 | } |
no test coverage detected