Class BlockIgniteEvent

All Implemented Interfaces:
Cancellable

public class BlockIgniteEvent extends BlockEvent implements Cancellable
Called when a block is ignited. If you want to catch when a Player places fire, you need to use BlockPlaceEvent.

If a Block Ignite event is cancelled, the block will not be ignited.

  • Constructor Details

  • Method Details

    • 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
    • getCause

      Gets the cause of block ignite.
      Returns:
      An IgniteCause value detailing the cause of block ignition
    • getPlayer

      @Nullable public Player getPlayer()
      Gets the player who ignited this block
      Returns:
      The Player that placed/ignited the fire block, or null if not ignited by a Player.
    • getIgnitingEntity

      @Nullable public Entity getIgnitingEntity()
      Gets the entity who ignited this block
      Returns:
      The Entity that placed/ignited the fire block, or null if not ignited by a Entity.
    • getIgnitingBlock

      @Nullable public Block getIgnitingBlock()
      Gets the block which ignited this block
      Returns:
      The Block that placed/ignited the fire block, or null if not ignited by a Block.
    • getHandlers

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

      @NotNull public static HandlerList getHandlerList()