Class VanillaLivingEntityDropHeadEvent

  • All Implemented Interfaces:
    Cancellable

    public class VanillaLivingEntityDropHeadEvent
    extends EntityEvent
    implements Cancellable
    Event created by PlayerHeads when a [living] entity drops a head from a source outside of PlayerHeads. Note: this event does not currently check if the entity dropped the item from their inventory/equipment, or from an actual head drop.
    Since:
    5.2.14-SNAPSHOT
    Author:
    crashdemons (crashenator at gmail.com)
    • Constructor Detail

      • VanillaLivingEntityDropHeadEvent

        public VanillaLivingEntityDropHeadEvent​(Event cause,
                                                LivingEntity entity,
                                                LivingEntity killer,
                                                List<ItemStack> drops)
        Creates the event
        Parameters:
        cause - the event that caused this one, or null.
        entity - the entity that dropped a head
        killer - the entity that caused the beheading, as determined by PlayerHeads.
        drops - the head items dropped.
    • Method Detail

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

        @Nullable
        public Event getCause()
        The event which inevitably triggered the beheading event (usually EntityDeathEvent)
        Returns:
        the event, or null.
        Since:
        5.2.14-SNAPSHOT
      • getDrops

        public List<ItemStack> getDrops()
        Gets the items that will drop from the beheading. Note: changing this list will not impact dropped items, you must interact with the event through getCause().
        Returns:
        ItemStacks that will drop into the world once this event is over
      • getKillerEntity

        @Nullable
        public LivingEntity getKillerEntity()
        The entity that is responsible for the beheading, as determined by PlayerHeads. It is possible that this differs from getEntity().getKiller() because it can identify non-player killers and search projectile and tame ownership, if configured. Use getEntity().getKiller() if you want the killer as determined by Minecraft.
        Returns:
        the killerEntity's entity
        Since:
        5.2.14-SNAPSHOT
      • 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