diff options
| author | Dan Johnson <danjohnso@users.noreply.github.com> | 2022-08-02 14:50:49 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-02 21:50:49 +0200 |
| commit | 3735a3df0ea73b81442c0057acd228b2b287a1ea (patch) | |
| tree | 21b9f8fdddb076e36a8118da234e4811c722f001 | |
| parent | 0b96a365e212373f966ea40e07035d2512f8f322 (diff) | |
Scripts/Naxxramas: Curse of the Plaguebringer should affect 10 targets in 25 man mode (#28164)
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 2d9cc01fd32..c0a2a1ba80b 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3445,18 +3445,12 @@ void SpellMgr::LoadSpellInfoCorrections() }); ApplySpellFix({ - 54835 // Curse of the Plaguebringer - Noth (H) - }, [](SpellInfo* spellInfo) - { - spellInfo->MaxAffectedTargets = 8; - }); - - ApplySpellFix({ 40827, // Sinful Beam 40859, // Sinister Beam 40860, // Vile Beam 40861, // Wicked Beam - 54098 // Poison Bolt Volly - Faerlina (H) + 54098, // Poison Bolt Volly - Faerlina (H) + 54835 // Curse of the Plaguebringer - Noth (H) }, [](SpellInfo* spellInfo) { spellInfo->MaxAffectedTargets = 10; |
