Package logisticspipes.network.packets.pipe

Examples of logisticspipes.network.packets.pipe.ItemBufferSyncPacket


  public void initialize() {
    if(MainProxy.isServer(getWorld())) {
      // cache chunk for marking dirty
      chunk = getWorld().getChunkFromBlockCoords(container.xCoord, container.zCoord);
      ItemBufferSyncPacket packet = PacketHandler.getPacket(ItemBufferSyncPacket.class);
      packet.setTilePos(container);
      _itemBuffer.setPacketType(packet, MainProxy.getDimensionForWorld(getWorld()), container.xCoord, container.zCoord);
    }
  }
View Full Code Here

TOP

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

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.