@return if that Liquid is early-game and easy to handle
(IFluidTank aFluid)
| 746 | |
| 747 | /** @return if that Liquid is early-game and easy to handle */ |
| 748 | public static boolean simple(IFluidTank aFluid) {return aFluid != null && simple(aFluid.getFluid());} |
| 749 | /** @return if that Liquid is early-game and easy to handle */ |
| 750 | public static boolean simple(FluidStack aFluid) {return aFluid != null && simple(aFluid.getFluid());} |
| 751 | /** @return if that Liquid is early-game and easy to handle */ |
no test coverage detected