Package logisticspipes.interfaces.routing

Examples of logisticspipes.interfaces.routing.IDirectRoutingConnection


      return; // system.throw("why you try to insert empty stack?");
    if(isConnectedInv(tile)) {
      if(hasRemoteConnection()) {
        CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
        if(CRP instanceof IDirectRoutingConnection) {
          IDirectRoutingConnection pipe = (IDirectRoutingConnection) CRP;
          pipe.addItem(info);
          spawnParticle(Particles.OrangeParticle, 4);
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of logisticspipes.interfaces.routing.IDirectRoutingConnection

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.