Class WitchThrowPotionEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
com.destroystokyo.paper.event.entity.WitchThrowPotionEvent
All Implemented Interfaces:
Cancellable

@NullMarked public class WitchThrowPotionEvent extends EntityEvent implements Cancellable
Fired when a witch throws a potion at a player
  • Constructor Details

  • Method Details

    • getEntity

      public Witch 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
    • getTarget

      public LivingEntity getTarget()
      Returns:
      The target of the potion
    • getPotion

      public @Nullable ItemStack getPotion()
      Returns:
      The potion the witch will throw at a player
    • setPotion

      public void setPotion(@Nullable ItemStack potion)
      Sets the potion to be thrown at a player
      Parameters:
      potion - The potion
    • 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:
      Event was cancelled or potion was null
    • 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

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

      public static HandlerList getHandlerList()