Package org.bukkit.event.entity
Class CreatureSpawnEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.entity.EntityEvent
org.bukkit.event.entity.EntitySpawnEvent
org.bukkit.event.entity.CreatureSpawnEvent
- All Implemented Interfaces:
Cancellable
public class CreatureSpawnEvent extends EntitySpawnEvent
Called when a creature is spawned into a world.
If a Creature Spawn event is cancelled, the creature will not spawn.
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CreatureSpawnEvent.SpawnReason
An enum to specify the type of spawning -
Field Summary
-
Constructor Summary
Constructors Constructor Description CreatureSpawnEvent(LivingEntity spawnee, CreatureSpawnEvent.SpawnReason spawnReason)
-
Method Summary
Modifier and Type Method Description LivingEntity
getEntity()
Returns the Entity involved in this eventCreatureSpawnEvent.SpawnReason
getSpawnReason()
Gets the reason for why the creature is being spawned.Methods inherited from class org.bukkit.event.entity.EntitySpawnEvent
getHandlerList, getHandlers, getLocation, isCancelled, setCancelled
-
Constructor Details
-
CreatureSpawnEvent
public CreatureSpawnEvent(@NotNull LivingEntity spawnee, @NotNull CreatureSpawnEvent.SpawnReason spawnReason)
-
-
Method Details
-
getEntity
Description copied from class:EntityEvent
Returns the Entity involved in this event- Overrides:
getEntity
in classEntityEvent
- Returns:
- Entity who is involved in this event
-
getSpawnReason
Gets the reason for why the creature is being spawned.- Returns:
- A SpawnReason value detailing the reason for the creature being spawned
-