mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
Deprecate CHUNK_GEN spawn reason
This commit is contained in:
parent
42a16e3c73
commit
0cda2aa272
1 changed files with 8 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
|||
package org.bukkit.event.entity;
|
||||
|
||||
import org.bukkit.Chunk;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
import org.bukkit.event.world.ChunkLoadEvent;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
|
@ -49,7 +51,13 @@ public class CreatureSpawnEvent extends EntitySpawnEvent {
|
|||
JOCKEY,
|
||||
/**
|
||||
* When a creature spawns due to chunk generation
|
||||
*
|
||||
* @deprecated no longer called, chunks are generated with entities
|
||||
* already existing. Consider using {@link ChunkLoadEvent},
|
||||
* {@link ChunkLoadEvent#isNewChunk()} and {@link Chunk#getEntities()}
|
||||
* for similar effect.
|
||||
*/
|
||||
@Deprecated
|
||||
CHUNK_GEN,
|
||||
/**
|
||||
* When a creature spawns from a spawner
|
||||
|
|
Loading…
Add table
Reference in a new issue