Class EnderDragonFireballHitEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
com.destroystokyo.paper.event.entity.EnderDragonFireballHitEvent
- All Implemented Interfaces:
Cancellable
Fired when a DragonFireball collides with a block/entity and spawns an AreaEffectCloud
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.entity.EntityEvent
entity
-
Constructor Summary
ConstructorDescriptionEnderDragonFireballHitEvent
(@NotNull DragonFireball fireball, @NotNull Collection<LivingEntity> targets, @NotNull AreaEffectCloud areaEffectCloud) -
Method Summary
Modifier and TypeMethodDescriptionThe fireball involved in this eventstatic @NotNull HandlerList
The living entities hit by fireballboolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.Methods inherited from class org.bukkit.event.entity.EntityEvent
getEntityType
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
EnderDragonFireballHitEvent
@Internal public EnderDragonFireballHitEvent(@NotNull @NotNull DragonFireball fireball, @NotNull @NotNull Collection<LivingEntity> targets, @NotNull @NotNull AreaEffectCloud areaEffectCloud)
-
-
Method Details
-
getEntity
The fireball involved in this event- Overrides:
getEntity
in classEntityEvent
- Returns:
- Entity who is involved in this event
-
getTargets
The living entities hit by fireball- Returns:
- the targets
-
getAreaEffectCloud
- Returns:
- The area effect cloud spawned in this collision
-
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 interfaceCancellable
- 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 interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-