Class CreeperIgniteEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
io.papermc.paper.event.entity.EntityIgniteEvent
com.destroystokyo.paper.event.entity.CreeperIgniteEvent
- All Implemented Interfaces:
Cancellable
Called when a Creeper is ignited either by a
flint and steel,
Creeper.ignite() or
Creeper.setIgnited(boolean).-
Nested Class Summary
Nested classes/interfaces inherited from class Event
Event.Result -
Field Summary
Fields inherited from class EntityEvent
entity -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the Entity involved in this event@Positive intGets the amount of ticks required for this entity to explode.booleanGets the cancellation state of this event.booleanvoidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidsetFuseTime(@Positive int ticks) Sets the amount of ticks required for this entity to explode.voidsetIgnited(boolean ignited) Methods inherited from class EntityIgniteEvent
getHandlerList, getHandlersMethods inherited from class EntityEvent
getEntityTypeMethods inherited from class Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
CreeperIgniteEvent
-
-
Method Details
-
getEntity
Description copied from class:EntityEventReturns the Entity involved in this event- Overrides:
getEntityin classEntityEvent- Returns:
- Entity who is involved in this event
-
isIgnited
public boolean isIgnited() -
setIgnited
public void setIgnited(boolean ignited) -
getFuseTime
public @Positive int getFuseTime()Description copied from class:EntityIgniteEventGets the amount of ticks required for this entity to explode.- Overrides:
getFuseTimein classEntityIgniteEvent- Returns:
- the amount of ticks required
-
setFuseTime
public void setFuseTime(@Positive int ticks) Description copied from class:EntityIgniteEventSets the amount of ticks required for this entity to explode.- Overrides:
setFuseTimein classEntityIgniteEvent- Parameters:
ticks- the amount of ticks required
-
isCancelled
public 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 interfaceCancellable- Overrides:
isCancelledin classEntityIgniteEvent- Returns:
trueif this event is cancelled
-
setCancelled
public 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 interfaceCancellable- Overrides:
setCancelledin classEntityIgniteEvent- Parameters:
cancel-trueif you wish to cancel this event
-