Examples of sharesTankWith()


Examples of logisticspipes.pipes.basic.fluid.FluidRoutedPipe.sharesTankWith()

  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
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.