Class PlayerTrackEntityEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
io.papermc.paper.event.player.PlayerTrackEntityEvent
All Implemented Interfaces:
Cancellable

public class PlayerTrackEntityEvent extends PlayerEvent implements Cancellable
Is called when a Player tracks an Entity.

If cancelled entity is not shown to the player and interaction in both directions is not possible.

Adding or removing entities from the world at the point in time this event is called is completely unsupported and should be avoided.

  • Constructor Details

  • Method Details

    • getEntity

      @NotNull public @NotNull Entity getEntity()
      Gets the entity that will be tracked
      Returns:
      the entity tracked
    • 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
    • getHandlerList

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

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