Class EntityExhaustionEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityExhaustionEvent
All Implemented Interfaces:
Cancellable

public class EntityExhaustionEvent extends EntityEvent implements Cancellable
Called when a human entity experiences exhaustion. An exhaustion level greater than 4.0 causes a decrease in saturation by 1.
  • Constructor Details

  • Method Details

    • getExhaustionReason

      @NotNull public EntityExhaustionEvent.ExhaustionReason getExhaustionReason()
      Returns:
      the exhaustion reason
    • getExhaustion

      public float getExhaustion()
      Get the amount of exhaustion to add to the player's current exhaustion.
      Returns:
      amount of exhaustion
    • setExhaustion

      public void setExhaustion(float exhaustion)
      Set the exhaustion to apply to the player. The maximum exhaustion that a player can have is 40. No error will be thrown if this limit is hit. This value may be negative, but there is unknown behavior for when exhaustion is below 0.
      Parameters:
      exhaustion - new exhaustion to add
    • getEntity

      @NotNull public HumanEntity getEntity()
      Description copied from class: EntityEvent
      Returns the Entity involved in this event
      Overrides:
      getEntity in class EntityEvent
      Returns:
      Entity who is involved in this event
    • 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 interface Cancellable
      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 interface Cancellable
      Parameters:
      cancel - true if you wish to cancel this event
    • getHandlers

      @NotNull public HandlerList getHandlers()
      Specified by:
      getHandlers in class Event
    • getHandlerList

      @NotNull public static HandlerList getHandlerList()