aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Johnson <danjohnso@users.noreply.github.com>2022-07-30 08:38:02 -0500
committerShauren <shauren.trinity@gmail.com>2022-09-05 21:34:48 +0200
commitc2cfda91a33838a13973ecac4d04ed145df608cf (patch)
tree21a37bdfddf84e5caa4219a27e10115729b1ea2f
parent4462aad70fc073ecf1d46eefb5f2cfe54acbd114 (diff)
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)
-rw-r--r--src/server/scripts/Northrend/Naxxramas/boss_noth.cpp10
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 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;