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 SummaryNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields inherited from class org.bukkit.event.entity.EntityEvententity
- 
Constructor SummaryConstructorsConstructorDescriptionEnderDragonFireballHitEvent(@NotNull DragonFireball fireball, @Nullable Collection<LivingEntity> targets, @NotNull AreaEffectCloud areaEffectCloud) 
- 
Method SummaryModifier and TypeMethodDescriptionThe fireball involved in this eventstatic @NotNull HandlerListThe living entities hit by fireball May be null if no entities were hitbooleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.Methods inherited from class org.bukkit.event.entity.EntityEventgetEntityTypeMethods inherited from class org.bukkit.event.EventcallEvent, getEventName, isAsynchronous
- 
Constructor Details- 
EnderDragonFireballHitEventpublic EnderDragonFireballHitEvent(@NotNull @NotNull DragonFireball fireball, @Nullable @Nullable Collection<LivingEntity> targets, @NotNull @NotNull AreaEffectCloud areaEffectCloud) 
 
- 
- 
Method Details- 
getEntityThe fireball involved in this event- Overrides:
- getEntityin class- EntityEvent
- Returns:
- Entity who is involved in this event
 
- 
getTargetsThe living entities hit by fireball May be null if no entities were hit- Returns:
- the targets
 
- 
getAreaEffectCloud- Returns:
- The area effect cloud spawned in this collision
 
- 
getHandlers- Specified by:
- getHandlersin class- Event
 
- 
getHandlerList
- 
isCancelledpublic boolean isCancelled()Description copied from interface:CancellableGets 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:
- isCancelledin interface- Cancellable
- Returns:
- true if this event is cancelled
 
- 
setCancelledpublic void setCancelled(boolean cancel) Description copied from interface:CancellableSets 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:
- setCancelledin interface- Cancellable
- Parameters:
- cancel- true if you wish to cancel this event
 
 
-