@return if that Liquid is early-game and easy to handle
(IFluidTank aFluid)
| 188 | |
| 189 | /** @return if that Liquid is early-game and easy to handle */ |
| 190 | @Deprecated public static boolean simple(IFluidTank aFluid) {return aFluid != null && simple(aFluid.getFluid());} |
| 191 | /** @return if that Liquid is early-game and easy to handle */ |
| 192 | @Deprecated public static boolean simple(FluidStack aFluid) {return aFluid != null && simple(aFluid.getFluid());} |
| 193 | /** @return if that Liquid is early-game and easy to handle */ |
no test coverage detected