From 9d96adeb6b360003e1a45cc73b46dc5fe8bdd164 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Sat, 8 Jan 2022 16:12:33 +0100 Subject: [PATCH] fix(Scripts/Icecrown Citadel): Ensure Deathbringer Saurfang casts Frenzy (#10048) * cherry-pick commit (https://github.com/TrinityCore/TrinityCore/commit/a0a64b10b53e74c0cfaa518f196150c622e75bd2) Co-Authored-By: Gildor <521036+Jildor@users.noreply.github.com> --- .../Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp b/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp index a0df3b943..26d4471fb 100644 --- a/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp +++ b/src/server/scripts/Northrend/IcecrownCitadel/boss_deathbringer_saurfang.cpp @@ -348,7 +348,7 @@ public: if (!_frenzied && HealthBelowPct(31)) // AT 30%, not below { _frenzied = true; - DoCast(me, SPELL_FRENZY); + DoCast(me, SPELL_FRENZY, true); Talk(SAY_FRENZY); } }