From 7e229e99fa97024a5ae8c478fbe1fa9f54d1b123 Mon Sep 17 00:00:00 2001 From: blinkysc <37940565+blinkysc@users.noreply.github.com> Date: Sun, 17 May 2026 17:09:00 -0500 Subject: [PATCH] fix(Scripts/HoR): drop player combat with Arthas on chase end (#25884) Co-authored-by: blinkysc Co-authored-by: MitchesD Co-authored-by: joschiwald --- .../HallsOfReflection/instance_halls_of_reflection.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp index 9d235c7b9..66780e883 100644 --- a/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp +++ b/src/server/scripts/Northrend/FrozenHalls/HallsOfReflection/instance_halls_of_reflection.cpp @@ -382,7 +382,11 @@ public: if (Creature* leader = GetCreature(NPC_SYLVANAS_PART2)) leader->setActive(false); if (Creature* lichKing = GetCreature(NPC_LICH_KING_BOSS)) + { + lichKing->GetThreatMgr().ClearAllThreat(); + lichKing->CombatStop(true); lichKing->setActive(false); + } _isLichKingFightActive = false; _outroStep = 1; _outroTimer = 0;