Examples of IRoutedItem


Examples of logisticspipes.logisticspipes.IRoutedItem

      if(MainProxy.isServer(getWorld())) {
        // destroy the item on exit if it isn't exitable
        if(!isSpecialConnectionInformationTransition && !isItemExitable(arrivingItem.getItemIdentifierStack())) { return; }
        // last chance for chassi to back out
        if(arrivingItem instanceof IRoutedItem) {
          IRoutedItem routed = (IRoutedItem)arrivingItem;
          if(routed.getTransportMode() != TransportMode.Active && !getPipe().getTransportLayer().stillWantItem(routed)) {
            reverseItem(arrivingItem);
            return;
          }
        }
        UpgradeManager manager = getPipe().getUpgradeManager();
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.