From 8c058791ed65ff55607eb1643b94ac69343c8834 Mon Sep 17 00:00:00 2001 From: UltraNix <80540499+UltraNix@users.noreply.github.com> Date: Wed, 18 May 2022 10:08:57 +0200 Subject: [PATCH] =?UTF-8?q?fix(Core/Spells):=20Windfury,=20Flametongue,=20?= =?UTF-8?q?Healing=20Stream,=20Cleansing=20=E2=80=A6=20(#11761)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ...and Mana Tide totems should be affected by shaman T1 3p bonus. --- src/server/game/Spells/SpellInfoCorrections.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/server/game/Spells/SpellInfoCorrections.cpp b/src/server/game/Spells/SpellInfoCorrections.cpp index 65fe6641c..126f7a5e0 100644 --- a/src/server/game/Spells/SpellInfoCorrections.cpp +++ b/src/server/game/Spells/SpellInfoCorrections.cpp @@ -916,6 +916,7 @@ void SpellMgr::LoadSpellInfoCorrections() spellInfo->SpellLevel = 0; spellInfo->BaseLevel = 0; spellInfo->DmgClass = SPELL_DAMAGE_CLASS_MAGIC; + spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(5); // 40yd }); // Earth Shield @@ -4270,6 +4271,19 @@ void SpellMgr::LoadSpellInfoCorrections() spellInfo->DurationEntry = sSpellDurationStore.LookupEntry(21); }); + // Mana Tide Totem + // Cleansing Totem Effect + ApplySpellFix({ 39609, 52025 }, [](SpellInfo* spellInfo) + { + spellInfo->RangeEntry = sSpellRangeStore.LookupEntry(5); // 40yd + }); + + // Increased Totem Radius + ApplySpellFix({ 21895 }, [](SpellInfo* spellInfo) + { + spellInfo->Effects[0].SpellClassMask = flag96(0x0603E000, 0x00200100); + }); + // Jokkum Summon ApplySpellFix({ 56541 }, [](SpellInfo* spellInfo) {