Package buildcraft.core.network

Examples of buildcraft.core.network.PacketSlotChange


  public void updateCraftingMatrix(int slot, ItemStack stack) {
    craftingSlots.setInventorySlotContents(slot, stack);
    updateRecipe();

    if (worldObj.isRemote) {
      PacketSlotChange packet = new PacketSlotChange(PacketIds.ADVANCED_WORKBENCH_SETSLOT, xCoord, yCoord, zCoord, slot, stack);
      BuildCraftSilicon.instance.sendToServer(packet);
    }
  }
View Full Code Here

TOP

Related Classes of buildcraft.core.network.PacketSlotChange

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.