Examples of LPRoutedBCTravelingItem


Examples of logisticspipes.proxy.buildcraft.LPRoutedBCTravelingItem

    if(tile instanceof TileGenericPipe) {
      TileGenericPipe pipe = (TileGenericPipe)tile;
      if(BlockGenericPipe.isValid(pipe.pipe) && pipe.pipe.transport instanceof PipeTransportItems) {
        TravelingItem bcItem = null;
        if(item instanceof LPTravelingItemServer) {
          LPRoutedBCTravelingItem lpBCItem = new LPRoutedBCTravelingItem();
          lpBCItem.setRoutingInformation(((LPTravelingItemServer)item).getInfo());
          lpBCItem.saveToExtraNBTData();
          bcItem = lpBCItem;
        } else {
          //TODO is this needed ClientSide ?
          //bcItem = TravelingItem.make();
          return true;
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.