mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-29 15:49:00 +01:00
Fix incorrect phantom spawning entity (#9385)
This commit is contained in:
parent
97487ac8bb
commit
1ef0244836
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
||||||
Phantom entityphantom = (Phantom) EntityType.PHANTOM.create(world);
|
Phantom entityphantom = (Phantom) EntityType.PHANTOM.create(world);
|
||||||
|
|
||||||
if (entityphantom != null) {
|
if (entityphantom != null) {
|
||||||
+ entityphantom.setSpawningEntity(entityphantom.getUUID()); // Paper
|
+ entityphantom.setSpawningEntity(entityplayer.getUUID()); // Paper
|
||||||
entityphantom.moveTo(blockposition1, 0.0F, 0.0F);
|
entityphantom.moveTo(blockposition1, 0.0F, 0.0F);
|
||||||
groupdataentity = entityphantom.finalizeSpawn(world, difficultydamagescaler, MobSpawnType.NATURAL, groupdataentity, (CompoundTag) null);
|
groupdataentity = entityphantom.finalizeSpawn(world, difficultydamagescaler, MobSpawnType.NATURAL, groupdataentity, (CompoundTag) null);
|
||||||
world.addFreshEntityWithPassengers(entityphantom, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.NATURAL); // CraftBukkit
|
world.addFreshEntityWithPassengers(entityphantom, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.NATURAL); // CraftBukkit
|
||||||
|
|
Loading…
Reference in a new issue