Class EntityInsideBlockEvent

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

public class EntityInsideBlockEvent extends EntityEvent implements Cancellable
Called when an entity enters the hitbox of a block. Only called for blocks that react when an entity is inside. If cancelled, any action that would have resulted from that entity being in the block will not happen (such as extinguishing an entity in a cauldron).

Blocks this is currently called for:

  • Bubble column
  • Buttons
  • Cactus
  • Campfire
  • Cauldron
  • Crops
  • Ender Portal
  • Fires
  • Honey
  • Hopper
  • Detector rails
  • Nether portals
  • Pressure plates
  • Sweet berry bush
  • Tripwire
  • Waterlily
  • Web
  • Wither rose
  • Constructor Details

  • Method Details

    • getBlock

      @NotNull public @NotNull Block getBlock()
      Gets the block.
      Returns:
      the block
    • 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
    • getHandlers

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

      @NotNull public static @NotNull HandlerList getHandlerList()