/* 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;
}