Class ProjectileCollideEvent

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

public class ProjectileCollideEvent extends EntityEvent implements Cancellable
Called when an projectile collides with an entity

This event is called before EntityDamageByEntityEvent, and cancelling it will allow the projectile to continue flying

  • Constructor Details

  • Method Details

    • getCollidedWith

      @NotNull public @NotNull Entity getCollidedWith()
      Get the entity the projectile collided with
      Returns:
      the entity collided with
    • getEntity

      @NotNull public @NotNull Projectile getEntity()
      Get the projectile that collided
      Overrides:
      getEntity in class EntityEvent
      Returns:
      the projectile that collided
    • getHandlerList

      @NotNull public static @NotNull HandlerList getHandlerList()
    • getHandlers

      @NotNull public @NotNull HandlerList getHandlers()
      Specified by:
      getHandlers in class 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