From e92a5077f253549f5c6f868a9e5d6ea04e36d4f2 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Mon, 29 Nov 2021 14:28:16 -0500 Subject: [PATCH] Spell/Script: Summon Scourged Captive Port From (https://github.com/TrinityCore/TrinityCore/commit/48c8b650bb58ef15ff548f6ae15664dd20434d9a) --- Source/Game/Spells/SpellManager.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Source/Game/Spells/SpellManager.cs b/Source/Game/Spells/SpellManager.cs index 5f131677c..f07ddf883 100644 --- a/Source/Game/Spells/SpellManager.cs +++ b/Source/Game/Spells/SpellManager.cs @@ -3477,6 +3477,7 @@ namespace Game.Entities }); ApplySpellFix(new[] { + 51597, // Summon Scourged Captive 56606, // Ride Jokkum 61791 // Ride Vehicle (Yogg-Saron) }, spellInfo => @@ -3488,6 +3489,15 @@ namespace Game.Entities }); }); + // Summon Scourged Captive + ApplySpellFix(new[] { 51597 }, spellInfo => + { + ApplySpellEffectFix(spellInfo, 0, spellEffectInfo => + { + spellEffectInfo.Scaling.Variance = 0.0f; + }); + }); + // Black Magic ApplySpellFix(new[] { 59630 }, spellInfo => {