Package erogenousbeef.bigreactors.common.multiblock.helpers

Examples of erogenousbeef.bigreactors.common.multiblock.helpers.CoolantContainer.canFill()


    if(!isConnected() || from != getOutwardsDir()) { return false; }

    if(!inlet) { return false; } // Prevent pipes from filling up the output tank inadvertently

    CoolantContainer cc = getReactorController().getCoolantContainer();
    return cc.canFill(getConnectedTank(), fluid);
  }

  @Override
  public boolean canDrain(ForgeDirection from, Fluid fluid) {
    if(!isConnected() || from != getOutwardsDir()) { return false; }
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.