Class BeaconEffectEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.block.BlockEvent
com.destroystokyo.paper.event.block.BeaconEffectEvent
- All Implemented Interfaces:
Cancellable
Called when a beacon effect is being applied to a player.
-
Nested Class Summary
Nested classes/interfaces inherited from class Event
Event.Result -
Field Summary
Fields inherited from class BlockEvent
block -
Constructor Summary
ConstructorsConstructorDescriptionBeaconEffectEvent(Block beacon, PotionEffect effect, Player player, boolean primary) -
Method Summary
Modifier and TypeMethodDescriptionGets the potion effect being applied.static HandlerListGets the player who the potion effect is being applied to.booleanGets the cancellation state of this event.booleanGets whether the effect is a primary beacon effect.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidsetEffect(PotionEffect effect) Sets the potion effect that will be applied.Methods inherited from class BlockEvent
getBlockMethods inherited from class Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
BeaconEffectEvent
@Internal public BeaconEffectEvent(Block beacon, PotionEffect effect, Player player, boolean primary)
-
-
Method Details
-
getEffect
-
setEffect
Sets the potion effect that will be applied.- Parameters:
effect- Potion effect
-
getPlayer
Gets the player who the potion effect is being applied to.- Returns:
- Affected player
-
isPrimary
public boolean isPrimary()Gets whether the effect is a primary beacon effect.- Returns:
trueif this event represents a primary effect
-
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- 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- Parameters:
cancel-trueif you wish to cancel this event
-
getHandlers
- Specified by:
getHandlersin classEvent
-
getHandlerList
-