From c2cfda91a33838a13973ecac4d04ed145df608cf Mon Sep 17 00:00:00 2001 From: Dan Johnson Date: Sat, 30 Jul 2022 08:38:02 -0500 Subject: Scripts/Naxxramas: Fixed number of affected targets for Cripple and Curse spells in 25 man version of Noth the Plaguebringer encounter (#28161) (cherry picked from commit 6b2fac687d05e14ae3e7b947b1193c39cc0d43c1) --- src/server/scripts/Northrend/Naxxramas/boss_noth.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp index 5f05694c84b..7603050aec1 100644 --- a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp +++ b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp @@ -54,8 +54,10 @@ enum Talk enum Spells { - SPELL_CURSE = 29213, // 25-man: 54835 - SPELL_CRIPPLE = 29212, // 25-man: 54814 + SPELL_CURSE = 29213, + SPELL_CRIPPLE = 29212, + SPELL_CURSE_25 = 54835, + SPELL_CRIPPLE_25 = 54814, SPELL_TELEPORT = 29216, // ground to balcony SPELL_TELEPORT_BACK = 29231 // balcony to ground @@ -210,7 +212,7 @@ struct boss_noth : public BossAI { case EVENT_CURSE: { - DoCastAOE(SPELL_CURSE); + DoCastAOE(RAID_MODE(SPELL_CURSE, SPELL_CURSE_25)); events.Repeat(randtime(Seconds(50), Seconds(70))); break; } @@ -223,7 +225,7 @@ struct boss_noth : public BossAI events.Repeat(Seconds(40)); break; case EVENT_BLINK: - DoCastAOE(SPELL_CRIPPLE, true); + DoCastAOE(RAID_MODE(SPELL_CRIPPLE, SPELL_CRIPPLE_25), true); DoCastAOE(SPELL_BLINK); ResetThreatList(); justBlinked = true; -- cgit v1.2.3