diff options
author | Molean <[email protected]> | 2023-06-23 18:50:29 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2023-06-23 12:50:29 +0200 |
commit | 206dd3af05d9fde6cc66dd0d00d58d6628120f2c (patch) | |
tree | 72245ab1211bbe16bdffde7fda9939747763a2fb /patches/server | |
parent | b1696788d61ddc338bd2e61fac3b43ff60c432e1 (diff) | |
download | Paper-206dd3af05d9fde6cc66dd0d00d58d6628120f2c.tar.gz Paper-206dd3af05d9fde6cc66dd0d00d58d6628120f2c.zip |
Fix incorrect phantom spawning entity (#9385)
Diffstat (limited to 'patches/server')
-rw-r--r-- | patches/server/0247-Add-PhantomPreSpawnEvent.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/patches/server/0247-Add-PhantomPreSpawnEvent.patch b/patches/server/0247-Add-PhantomPreSpawnEvent.patch index 5e0542c9d7..4e43264e12 100644 --- a/patches/server/0247-Add-PhantomPreSpawnEvent.patch +++ b/patches/server/0247-Add-PhantomPreSpawnEvent.patch @@ -67,7 +67,7 @@ index 61ba99d99cc4e7782450ee6aa8b6c87b1a42cb3a..a18e6296d1f50c53291d41192a100960 Phantom entityphantom = (Phantom) EntityType.PHANTOM.create(world); if (entityphantom != null) { -+ entityphantom.setSpawningEntity(entityphantom.getUUID()); // Paper ++ entityphantom.setSpawningEntity(entityplayer.getUUID()); // Paper entityphantom.moveTo(blockposition1, 0.0F, 0.0F); groupdataentity = entityphantom.finalizeSpawn(world, difficultydamagescaler, MobSpawnType.NATURAL, groupdataentity, (CompoundTag) null); world.addFreshEntityWithPassengers(entityphantom, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.NATURAL); // CraftBukkit |