From f27a1e2619df875bb47af24344016040b895882f Mon Sep 17 00:00:00 2001 From: sogladev Date: Sun, 1 Feb 2026 16:59:52 +0100 Subject: [PATCH] fix(Scripts/Naxxramas): Sapphiron flight phase animation (#24535) --- src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp index 50c51861e..c7407f554 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_sapphiron.cpp @@ -128,6 +128,7 @@ public: spawnTimer = 0; currentTarget.Clear(); blockList.clear(); + me->SetAnimTier(AnimTier::Fly); } void EnterCombatSelfFunction() @@ -291,7 +292,7 @@ public: me->AttackStop(); float x, y, z, o; me->GetHomePosition(x, y, z, o); - me->GetMotionMaster()->MovePoint(POINT_CENTER, x, y, z); + me->GetMotionMaster()->MovePoint(POINT_CENTER, x, y, z, FORCED_MOVEMENT_NONE, 0.f, o); return; case EVENT_FLIGHT_LIFTOFF: Talk(EMOTE_AIR_PHASE);