Package logisticspipes.network.packets.pipe

Examples of logisticspipes.network.packets.pipe.PipeTileStatePacket


  /* SMP */

  public ModernPacket getLPDescriptionPacket() {
    bindPipe();

    PipeTileStatePacket packet = PacketHandler.getPacket(PipeTileStatePacket.class);
   
    packet.setTilePos(this);
   
    pipe.bcPipePart.updateCoreStateGateData();

    packet.setCoreState(coreState);
    packet.setBcCoreState(bcCoreState);
    packet.setRenderState(renderState);
    packet.setPipe(pipe);

    return packet;
  }
View Full Code Here

TOP

Related Classes of logisticspipes.network.packets.pipe.PipeTileStatePacket

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.