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 org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.block.BlockEvent
block
-
Constructor Summary
ConstructorDescriptionBeaconEffectEvent
(@NotNull Block block, @NotNull PotionEffect effect, @NotNull Player player, boolean primary) -
Method Summary
Modifier and TypeMethodDescriptionGets the potion effect being applied.static @NotNull HandlerList
Gets the player who the potion effect is being applied to.boolean
Gets the cancellation state of this event.boolean
Gets whether the effect is a primary beacon effect.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
setEffect
(@NotNull PotionEffect effect) Sets the potion effect that will be applied.Methods inherited from class org.bukkit.event.block.BlockEvent
getBlock
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
BeaconEffectEvent
-
-
Method Details
-
getEffect
Gets the potion effect being applied.- Returns:
- Potion effect
-
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:
true
if this event represents a primary effect
-
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
-