Class WardenAngerChangeEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
io.papermc.paper.event.entity.WardenAngerChangeEvent
All Implemented Interfaces:
Cancellable

public class WardenAngerChangeEvent extends EntityEvent implements Cancellable
Called when a Warden's anger level has changed due to another entity.

If the event is cancelled, the warden's anger level will not change.

  • Constructor Details

  • Method Details

    • getTarget

      @Nullable public @Nullable Entity getTarget()
      Gets the entity (if any) which triggered this anger update.
      Returns:
      triggering entity, or null
    • getOldAnger

      public int getOldAnger()
      Gets the old anger level.
      Returns:
      old anger level
      See Also:
    • getNewAnger

      public int getNewAnger()
      Gets the new anger level resulting from this event.
      Returns:
      new anger level
      See Also:
    • setNewAnger

      public void setNewAnger(int newAnger)
      Sets the new anger level resulting from this event.

      The anger of a warden is capped at 150.

      Parameters:
      newAnger - the new anger level, max 150
      Throws:
      IllegalArgumentException - if newAnger is greater than 150
      See Also:
    • getEntity

      @NotNull public @NotNull Warden 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 cancelled)
      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:
      cancelled - true if you wish to cancel this event
    • getHandlers

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

      @NotNull public static @NotNull HandlerList getHandlerList()