diff options
author | Dan Johnson <danjohnso@users.noreply.github.com> | 2022-07-30 08:38:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-30 15:38:02 +0200 |
commit | 6b2fac687d05e14ae3e7b947b1193c39cc0d43c1 (patch) | |
tree | aadb0fd7e4fb71a08f0bc0b7dd91f8f7eda3474d /src | |
parent | 4e864848284443428cd7c12d70e64f68cefe84d7 (diff) |
Scripts/Naxxramas: Fixed number of affected targets for Cripple and Curse spells in 25 man version of Noth the Plaguebringer encounter (#28161)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Northrend/Naxxramas/boss_noth.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp b/src/server/scripts/Northrend/Naxxramas/boss_noth.cpp index 567acea1156..5720763edc7 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; |