Package org.bukkit.event.player
Class PlayerItemConsumeEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
org.bukkit.event.player.PlayerItemConsumeEvent
- All Implemented Interfaces:
Cancellable
public class PlayerItemConsumeEvent extends PlayerEvent implements Cancellable
This event will fire when a player is finishing consuming an item (food,
potion, milk bucket).
If the ItemStack is modified the server will use the effects of the new item and not remove the original one from the player's inventory.
If the event is cancelled the effect will not be applied and the item will not be removed from the player's inventory.
If the ItemStack is modified the server will use the effects of the new item and not remove the original one from the player's inventory.
If the event is cancelled the effect will not be applied and the item will not be removed from the player's inventory.
-
Nested Class Summary
-
Field Summary
-
Constructor Summary
Constructors Constructor Description PlayerItemConsumeEvent(Player player, ItemStack item)
-
Method Summary
Modifier and Type Method Description static HandlerList
getHandlerList()
HandlerList
getHandlers()
ItemStack
getItem()
Gets the item that is being consumed.boolean
isCancelled()
Gets the cancellation state of this event.void
setCancelled(boolean cancel)
Sets the cancellation state of this event.void
setItem(ItemStack item)
Set the item being consumed
-
Constructor Details
-
PlayerItemConsumeEvent
- Parameters:
player
- the player consumingitem
- the ItemStack being consumed
-
-
Method Details
-
getItem
Gets the item that is being consumed. Modifying the returned item will have no effect, you must usesetItem(org.bukkit.inventory.ItemStack)
instead.- Returns:
- an ItemStack for the item being consumed
-
setItem
Set the item being consumed- Parameters:
item
- the item being consumed
-
isCancelled
public boolean isCancelled()Description copied from interface:Cancellable
Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel)Description copied from interface:Cancellable
Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-