Package io.papermc.paper.event.player
Class PlayerChangeBeaconEffectEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
io.papermc.paper.event.player.PlayerChangeBeaconEffectEvent
- All Implemented Interfaces:
Cancellable
Called when a player sets the effect for a beacon
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.player.PlayerEvent
player
-
Constructor Summary
ConstructorDescriptionPlayerChangeBeaconEffectEvent
(@NotNull Player player, @Nullable PotionEffectType primary, @Nullable PotionEffectType secondary, @NotNull Block beacon) -
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull HandlerList
boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
setConsumeItem
(boolean consumeItem) Sets if the item used to change the beacon should be consumed.void
setPrimary
(@Nullable PotionEffectType primary) Sets the primary effectvoid
setSecondary
(@Nullable PotionEffectType secondary) Sets the secondary effectboolean
Gets if the item used to change the beacon will be consumed.Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
PlayerChangeBeaconEffectEvent
-
-
Method Details
-
getPrimary
- Returns:
- the primary effect
-
setPrimary
Sets the primary effectNOTE: The primary effect still has to be one of the valid effects for a beacon.
- Parameters:
primary
- the primary effect
-
getSecondary
- Returns:
- the secondary effect
-
setSecondary
Sets the secondary effectThis only has an effect when the beacon is able to accept a secondary effect. NOTE: The secondary effect still has to be a valid effect for a beacon.
- Parameters:
secondary
- the secondary effect
-
getBeacon
- Returns:
- the beacon block associated with this event
-
willConsumeItem
public boolean willConsumeItem()Gets if the item used to change the beacon will be consumed.Independent of
isCancelled()
. If the event is cancelled the item will NOT be consumed.- Returns:
true
if item will be consumed
-
setConsumeItem
public void setConsumeItem(boolean consumeItem) Sets if the item used to change the beacon should be consumed.Independent of
isCancelled()
. If the event is cancelled the item will NOT be consumed.- Parameters:
consumeItem
-true
if item should be consumed
-
isCancelled
public boolean isCancelled()Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other pluginsIf a
PlayerChangeBeaconEffectEvent
is cancelled, the changes will not take effect- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.If cancelled, the item will NOT be consumed regardless of what
willConsumeItem()
saysIf a
PlayerChangeBeaconEffectEvent
is cancelled, the changes will not be applied or saved.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-