From 13b221475ba8110b830b210e07de07a4e681db01 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 7 Sep 2022 13:00:43 -0400 Subject: [PATCH] Scripts/Naxxramas: Curse of the Plaguebringer should affect 10 targets in 25 man mode Port From (https://github.com/TrinityCore/TrinityCore/commit/98e0acd76812a145f314c97209fdbbd3d441fa41) --- Source/Game/Spells/SpellManager.cs | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/Source/Game/Spells/SpellManager.cs b/Source/Game/Spells/SpellManager.cs index 1275ac1b2..78667bad4 100644 --- a/Source/Game/Spells/SpellManager.cs +++ b/Source/Game/Spells/SpellManager.cs @@ -3286,18 +3286,13 @@ namespace Game.Entities spellInfo.MaxAffectedTargets = 5; }); - // Curse of the Plaguebringer - Noth (H) - ApplySpellFix(new[] { 54835 }, spellInfo => - { - spellInfo.MaxAffectedTargets = 8; - }); - ApplySpellFix(new[] { 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.MaxAffectedTargets = 10;