Class EntityZapEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntityTransformEvent
com.destroystokyo.paper.event.entity.EntityZapEvent
- All Implemented Interfaces:
- Cancellable
- Direct Known Subclasses:
- PigZapEvent
Fired when lightning strikes an entity
- 
Nested Class SummaryNested classes/interfaces inherited from class org.bukkit.event.entity.EntityTransformEventEntityTransformEvent.TransformReasonNested classes/interfaces inherited from class org.bukkit.event.EventEvent.Result
- 
Field SummaryFields inherited from class org.bukkit.event.entity.EntityEvententity
- 
Constructor SummaryConstructorsConstructorDescriptionEntityZapEvent(@NotNull Entity entity, @NotNull LightningStrike bolt, @NotNull Entity replacementEntity) 
- 
Method SummaryModifier and TypeMethodDescriptiongetBolt()Gets the lightning bolt that is striking the entity.static @NotNull HandlerListGets the entity that will replace the struck entity.booleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.Methods inherited from class org.bukkit.event.entity.EntityTransformEventgetTransformedEntities, getTransformedEntity, getTransformReasonMethods inherited from class org.bukkit.event.entity.EntityEventgetEntity, getEntityTypeMethods inherited from class org.bukkit.event.EventcallEvent, getEventName, isAsynchronous
- 
Constructor Details- 
EntityZapEvent
 
- 
- 
Method Details- 
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
- Overrides:
- isCancelledin class- EntityTransformEvent
- 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
- Overrides:
- setCancelledin class- EntityTransformEvent
- Parameters:
- cancel- true if you wish to cancel this event
 
- 
getBoltGets the lightning bolt that is striking the entity.- Returns:
- The lightning bolt responsible for this event
 
- 
getReplacementEntityGets the entity that will replace the struck entity.- Returns:
- The entity that will replace the struck entity
 
- 
getHandlers- Overrides:
- getHandlersin class- EntityTransformEvent
 
- 
getHandlerList
 
-