Package net.minestom.server.event.player
Class PlayerPreEatEvent
java.lang.Object
net.minestom.server.event.player.PlayerPreEatEvent
- All Implemented Interfaces:
Event
,CancellableEvent
,EntityEvent
,EntityInstanceEvent
,InstanceEvent
,ItemEvent
,PlayerEvent
,PlayerInstanceEvent
public class PlayerPreEatEvent
extends Object
implements ItemEvent, PlayerInstanceEvent, CancellableEvent
Called before the PlayerEatEvent and can be used to change the eating time
or to cancel its processing, cancelling the event means that the player will
continue the animation indefinitely.
-
Constructor Summary
ConstructorDescriptionPlayerPreEatEvent
(@NotNull Player player, @NotNull ItemStack foodItem, Player.Hand hand, long eatingTime) -
Method Summary
Modifier and TypeMethodDescriptionlong
Gets the food eating time.getHand()
@NotNull ItemStack
The food item which will be eaten.@NotNull Player
Gets the player.boolean
Gets if theEvent
should be cancelled or not.void
setCancelled
(boolean cancel) Marks theEvent
as cancelled or not.void
setEatingTime
(long eatingTime) Changes the food eating time.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface net.minestom.server.event.trait.EntityInstanceEvent
getInstance
Methods inherited from interface net.minestom.server.event.trait.PlayerEvent
getEntity
-
Constructor Details
-
PlayerPreEatEvent
public PlayerPreEatEvent(@NotNull @NotNull Player player, @NotNull @NotNull ItemStack foodItem, @NotNull Player.Hand hand, long eatingTime)
-
-
Method Details
-
getHand
-
getEatingTime
public long getEatingTime()Gets the food eating time.This is by default
Player.getDefaultEatingTime()
.- Returns:
- the eating time
-
setEatingTime
public void setEatingTime(long eatingTime) Changes the food eating time.- Parameters:
eatingTime
- the new eating time
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableEvent
Gets if theEvent
should be cancelled or not.- Specified by:
isCancelled
in interfaceCancellableEvent
- Returns:
- true if the event should be cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableEvent
Marks theEvent
as cancelled or not.- Specified by:
setCancelled
in interfaceCancellableEvent
- Parameters:
cancel
- true if the event should be cancelled, false otherwise
-
getPlayer
Description copied from interface:PlayerEvent
Gets the player.- Specified by:
getPlayer
in interfacePlayerEvent
- Returns:
- the player
-
getItemStack
The food item which will be eaten.- Specified by:
getItemStack
in interfaceItemEvent
- Returns:
- the food item
-