Examples of IFluidCoolant


Examples of crazypants.enderio.fluid.IFluidCoolant

          list.add(EnumChatFormatting.ITALIC + " " + fuel.getTotalBurningTime() + " " + Lang.localize("fuel.tooltip.burnTime"));
        } else {
          addShowDetailsTooltip(list);
        }
      } else {
        IFluidCoolant coolant = FluidFuelRegister.instance.getCoolant(fluid);
        if(coolant != null) {
          if(showAdvancedTooltips()) {
            list.add(Lang.localize("coolant.tooltip.heading"));
            list.add(EnumChatFormatting.ITALIC + " "
                + list.add(Lang.localize("fuel.tooltip.degreesPerBucket") + " "
                    + PowerDisplayUtil.formatPowerFloat(coolant.getDegreesCoolingPerMB(100) * 1000)));
          } else {
            addShowDetailsTooltip(list);
          }
        }
      }
View Full Code Here

Examples of crazypants.enderio.fluid.IFluidCoolant

    if(resource == null || resource.getFluid() == null || !canFill(from, resource.getFluid())) {
      return 0;
    }
    int res = 0;   
   
    IFluidCoolant cool = FluidFuelRegister.instance.getCoolant(resource.getFluid());
    if(cool != null) {
      res = getCoolantTank().fill(resource, doFill);
    } else {
      IFluidFuel f = FluidFuelRegister.instance.getFuel(resource.getFluid());
      if(f != null) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.