Package logisticspipes.pipes.basic.fluid

Examples of logisticspipes.pipes.basic.fluid.FluidRoutedPipe


    }
  }
 
  private boolean checkFluidProvider() {
    boolean done = true;
    FluidRoutedPipe thisPipe = (FluidRoutedPipe) this.target;
    List<IFluidProvider> providers = getFluidProviders();
    for(IFluidProvider provider:providers) {
      if(!thisPipe.sharesTankWith((FluidRoutedPipe) provider)) {
        int alreadyRequested = 0;
        if(root != null) {
          alreadyRequested = root.getAllPromissesFor(provider, getFluid());
        }
        provider.canProvide(this, alreadyRequested);
View Full Code Here

TOP

Related Classes of logisticspipes.pipes.basic.fluid.FluidRoutedPipe

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.