@return if that Liquid is Water or Distilled Water
(IFluidTank aFluid)
| 132 | |
| 133 | /** @return if that Liquid is Water or Distilled Water */ |
| 134 | @Deprecated public static boolean water(IFluidTank aFluid) {return aFluid != null && water(aFluid.getFluid());} |
| 135 | /** @return if that Liquid is Water or Distilled Water */ |
| 136 | @Deprecated public static boolean water(FluidStack aFluid) {return aFluid != null && water(aFluid.getFluid());} |
| 137 | /** @return if that Liquid is Water or Distilled Water */ |