public class PlayerChestToInventoryEvent extends PlayerEvent implements Cancellable
Constructor and Description |
---|
PlayerChestToInventoryEvent(Player player,
Item item,
Item exchangeItem,
int amount,
int chestID,
int chestSlot,
int inventorySlot,
Inventory.SlotType inventorySlotType) |
Modifier and Type | Method and Description |
---|---|
int |
getAmount()
Gets the amount of items that will be moved to the inventory.
|
int |
getChestID()
Gets the ID of the chest.
|
int |
getChestSlot()
Gets the item slot in the chest (where the player got the item from).
|
Item |
getExchangeItem()
Gets the item this item eventually gets exchanged with, i.e. when the player
exchanges a chest item with an inventory item (the chest item will be moved to
the inventory, and the inventory item will be moved to the chest).
|
int |
getInventorySlot()
Gets the target inventory slot (where the player moved the item to).
|
Inventory.SlotType |
getInventorySlotType()
Gets the target inventory slot type (e.g. quickslot, equipment etc).
|
Item |
getItem()
Gets the item.
|
boolean |
isCancelled()
Determines if the event is cancelled.
|
void |
setCancelled(boolean cancel)
Cancels this event.
|
getPlayer
public PlayerChestToInventoryEvent(Player player, Item item, Item exchangeItem, int amount, int chestID, int chestSlot, int inventorySlot, Inventory.SlotType inventorySlotType)
public int getAmount()
public Item getItem()
public Item getExchangeItem()
public int getChestID()
public int getChestSlot()
public int getInventorySlot()
public Inventory.SlotType getInventorySlotType()
public boolean isCancelled()
Cancellable
isCancelled
in interface Cancellable
public void setCancelled(boolean cancel)
Cancellable
setCancelled
in interface Cancellable
cancel
- set to true if you want to cancel this event.