Class WorldBorderBoundsChangeEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.world.WorldEvent
io.papermc.paper.event.world.border.WorldBorderEvent
io.papermc.paper.event.world.border.WorldBorderBoundsChangeEvent
- All Implemented Interfaces:
Cancellable
Called when a world border changes its bounds, either over time, or instantly.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class io.papermc.paper.event.world.border.WorldBorderEvent
worldBorder
-
Constructor Summary
ConstructorDescriptionWorldBorderBoundsChangeEvent
(@NotNull World world, @NotNull WorldBorder worldBorder, @NotNull WorldBorderBoundsChangeEvent.Type type, double oldSize, double newSize, long duration) -
Method Summary
Modifier and TypeMethodDescriptionlong
Gets the time in milliseconds for the change.static @NotNull HandlerList
double
Gets the new size of the world border.double
Gets the old size or the world border.getType()
Gets if this change is an instant change or over-time change.boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
setDuration
(long duration) Sets the time in milliseconds for the change.void
setNewSize
(double newSize) Sets the new size of the world border.Methods inherited from class io.papermc.paper.event.world.border.WorldBorderEvent
getWorldBorder
Methods inherited from class org.bukkit.event.world.WorldEvent
getWorld
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
WorldBorderBoundsChangeEvent
@Internal public WorldBorderBoundsChangeEvent(@NotNull @NotNull World world, @NotNull @NotNull WorldBorder worldBorder, @NotNull @NotNull WorldBorderBoundsChangeEvent.Type type, double oldSize, double newSize, long duration)
-
-
Method Details
-
getType
Gets if this change is an instant change or over-time change.- Returns:
- the change type
-
getOldSize
public double getOldSize()Gets the old size or the world border.- Returns:
- the old size
-
getNewSize
public double getNewSize()Gets the new size of the world border.- Returns:
- the new size
-
setNewSize
public void setNewSize(double newSize) Sets the new size of the world border.- Parameters:
newSize
- the new size
-
getDuration
public long getDuration()Gets the time in milliseconds for the change. Will be 0 if instant.- Returns:
- the time in milliseconds for the change
-
setDuration
public void setDuration(long duration) Sets the time in milliseconds for the change. Will changegetType()
to returnWorldBorderBoundsChangeEvent.Type.STARTED_MOVE
.- Parameters:
duration
- the time in milliseconds for the change
-
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
-