Examples of SlotArmorBackpack


Examples of net.mcft.copy.betterstorage.container.SlotArmorBackpack

   
    int index = 5 + armorType;
    Slot slotBefore = player.inventoryContainer.getSlot(index);
    if (slotBefore instanceof SlotArmorBackpack) return;
    int slotIndex = player.inventory.getSizeInventory() - getChestSlotOffset(player) - armorType;
    SlotArmorBackpack slot = new SlotArmorBackpack(player.inventory, slotIndex, 8, 8 + armorType * 18);
    slot.slotNumber = index;
    player.inventoryContainer.inventorySlots.set(index, slot);
   
  }
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.