Class PlayerNaturallySpawnCreaturesEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent
- All Implemented Interfaces:
Cancellable
Fired when the server is calculating what chunks to try to spawn monsters in every Monster Spawn Tick event
-
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
-
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull HandlerList
byte
boolean
Gets the cancellation state of this event.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
setSpawnRadius
(byte radius) Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
PlayerNaturallySpawnCreaturesEvent
-
-
Method Details
-
getSpawnRadius
public byte getSpawnRadius()- Returns:
- The radius of chunks around this player to be included in natural spawn selection
-
setSpawnRadius
public void setSpawnRadius(byte radius) - Parameters:
radius
- The radius of chunks around this player to be included in natural spawn selection
-
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:
- If this players chunks will be excluded from natural spawns
-
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, and not include this players chunks for natural spawning
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-