Class ProjectileCollideEvent

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

@Deprecated public class ProjectileCollideEvent extends EntityEvent implements Cancellable
Deprecated.
Deprecated, use ProjectileHitEvent and check if there is a hit entity
Called when a 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()
      Deprecated.
      Get the entity the projectile collided with
      Returns:
      the entity collided with
    • getEntity

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

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

      @NotNull public @NotNull HandlerList getHandlers()
      Deprecated.
      Specified by:
      getHandlers in class Event
    • isCancelled

      public boolean isCancelled()
      Deprecated.
      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)
      Deprecated.
      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