mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-25 06:36:24 +00:00
fix(Core/Spells): Windfury, Flametongue, Healing Stream, Cleansing … (#11761)
...and Mana Tide totems should be affected by shaman T1 3p bonus.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user