3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-15 12:30:06 +01:00

Use SpawnReason.NATURAL for Phantom spawning

Dieser Commit ist enthalten in:
klugemonkey 2018-07-27 19:33:36 +10:00 committet von md_5
Ursprung 3d7f2f07d5
Commit 4b00823222

Datei anzeigen

@ -0,0 +1,11 @@
--- a/net/minecraft/server/MobSpawnerPhantom.java
+++ b/net/minecraft/server/MobSpawnerPhantom.java
@@ -54,7 +54,7 @@
entityphantom.setPositionRotation(blockposition1, 0.0F, 0.0F);
groupdataentity = entityphantom.prepare(difficultydamagescaler, groupdataentity, (NBTTagCompound) null);
- world.addEntity(entityphantom);
+ world.addEntity(entityphantom, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.NATURAL); // CraftBukkit
}
i += k;