Class SlotSingleItem

java.lang.Object
net.minecraft.world.inventory.Slot
org.cyclops.cyclopscore.inventory.slot.SlotExtended
org.cyclops.cyclopscore.inventory.slot.SlotSingleItem

public class SlotSingleItem extends SlotExtended
Slot that is used for only accepting one item.
  • Field Summary

    Fields inherited from class net.minecraft.world.inventory.Slot

    container, index, x, y
  • Constructor Summary

    Constructors
    Constructor
    Description
    SlotSingleItem(net.minecraft.world.Container inventory, int index, int x, int y, net.minecraft.world.item.Item item)
    Make a new instance.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    mayPlace(net.minecraft.world.item.ItemStack itemStack)
     

    Methods inherited from class org.cyclops.cyclopscore.inventory.slot.SlotExtended

    mayPickup

    Methods inherited from class net.minecraft.world.inventory.Slot

    allowModification, checkTakeAchievements, getContainerSlot, getItem, getMaxStackSize, getMaxStackSize, getNoItemIcon, getSlotIndex, hasItem, isActive, isFake, isHighlightable, isSameInventory, onQuickCraft, onQuickCraft, onSwapCraft, onTake, remove, safeInsert, safeInsert, safeTake, set, setBackground, setByPlayer, setByPlayer, setChanged, tryRemove

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SlotSingleItem

      public SlotSingleItem(net.minecraft.world.Container inventory, int index, int x, int y, net.minecraft.world.item.Item item)
      Make a new instance.
      Parameters:
      inventory - The inventory this slot will be in.
      index - The index of this slot.
      x - X coordinate.
      y - Y coordinate.
      item - The item to accept.
  • Method Details

    • mayPlace

      public boolean mayPlace(net.minecraft.world.item.ItemStack itemStack)
      Overrides:
      mayPlace in class SlotExtended