Use SpawnReason.NATURAL for Phantom spawning

By: klugemonkey <klugemonkey@spawnchunk.com>
This commit is contained in:
CraftBukkit/Spigot 2018-07-27 19:33:36 +10:00
parent 8b47bdcb5e
commit b69070bbe4

View file

@ -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;