mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-17 16:15:24 +01:00
18 lines
627 B
Diff
18 lines
627 B
Diff
--- a/net/minecraft/server/WorldAccess.java
|
|
+++ b/net/minecraft/server/WorldAccess.java
|
|
@@ -5,6 +5,13 @@
|
|
WorldServer getMinecraftWorld();
|
|
|
|
default void addAllEntities(Entity entity) {
|
|
- entity.co().forEach(this::addEntity);
|
|
+ // CraftBukkit start
|
|
+ this.addAllEntities(entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.DEFAULT);
|
|
}
|
|
+
|
|
+ default boolean addAllEntities(Entity entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
|
|
+ entity.co().forEach((e) -> this.addEntity(e, reason));
|
|
+ return !entity.dead;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
}
|