Package forestry.core.fluids.tanks

Examples of forestry.core.fluids.tanks.StandardTank


    if (inventory.getStackInSlot(SLOT_CAN) != null) {

      FluidContainerData container = LiquidHelper.getLiquidContainer(inventory.getStackInSlot(SLOT_CAN));
      if (container != null) {

        StandardTank tank = null;

        if (heatingTank.accepts(container.fluid.getFluid()))
          tank = heatingTank;
        else if (fuelTank.accepts(container.fluid.getFluid()))
          tank = fuelTank;
View Full Code Here


  private int fillingTotalTime;

  public MachineBottler() {
    super(1100, 50, 4000);
    setHints(Config.hints.get("bottler"));
    resourceTank = new StandardTank(Defaults.PROCESSOR_TANK_CAPACITY);
    tankManager = new TankManager(resourceTank);
  }
View Full Code Here

TOP

Related Classes of forestry.core.fluids.tanks.StandardTank

Copyright © 2018 www.massapicom. 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.