Class BlockDropHeadEvent

  • All Implemented Interfaces:
    Cancellable, DropHeadEvent

    public class BlockDropHeadEvent
    extends BlockEvent
    implements Cancellable, DropHeadEvent
    Event created by the PlayerHeads plugin when a block is broken by hand (mined) and dropping a head. Note: does not occur when broken by water or pistons.
    Since:
    4.8.5-SNAPSHOT
    Author:
    crashdemons (crashenator at gmail.com)
    • Constructor Detail

      • BlockDropHeadEvent

        public BlockDropHeadEvent​(Block block,
                                  ItemStack drop)
        Construct the event
        Parameters:
        block - the block dropping the head
        drop - the head item being dropped
    • Method Detail

      • getDrop

        public ItemStack getDrop()
        Gets the item that will drop from the mined block.
        Specified by:
        getDrop in interface DropHeadEvent
        Returns:
        mutable ItemStack that will drop into the world once this event is over
      • setDrop

        public void setDrop​(@Nullable
                            ItemStack stack)
        Sets the item that will drop from the mined block. 5.2+ API
        Specified by:
        setDrop in interface DropHeadEvent
        Parameters:
        stack - the stack to drop. If this is null, no item will be dropped, but the drop event will complete successfully as if one did. (cancel the event to stop the drop).
        Since:
        5.2.0-SNAPSHOT
      • isCancelled

        public boolean isCancelled()
        Whether the event has been cancelled.
        Specified by:
        isCancelled in interface Cancellable
        Returns:
        Whether the event has been cancelled.
      • setCancelled

        public void setCancelled​(boolean cancel)
        Sets whether the event should be cancelled.
        Specified by:
        setCancelled in interface Cancellable
        Parameters:
        cancel - whether the event should be cancelled.
      • getHandlers

        public HandlerList getHandlers()
        Get a list of handlers for the event.
        Specified by:
        getHandlers in class Event
        Returns:
        a list of handlers for the event
      • getHandlerList

        public static HandlerList getHandlerList()
        Get a list of handlers for the event.
        Returns:
        a list of handlers for the event