diff options
| author | Ovah <dreadkiller@gmx.de> | 2022-02-22 17:58:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-22 18:58:41 +0200 |
| commit | 8fe0ac3cd15985cf2bb3acc5b20460728bbf581c (patch) | |
| tree | a9dc98f1d43917aa5753815906117ad7db37d313 /src/server/game | |
| parent | cec74cfa5562f60b67f1539553e18574c20ab788 (diff) | |
Core/Spells: removed hackfix for Elemental Oath and replaced it with a proper implementation (#27812)
Diffstat (limited to 'src/server/game')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 734360cea22..46ce4c7b0b0 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3596,18 +3596,6 @@ void SpellMgr::LoadSpellInfoCorrections() spellInfo->Stances = UI64LIT(1) << (FORM_TREE - 1); }); - // Elemental Oath - ApplySpellFix({ - 51466, // (Rank 1) - 51470 // (Rank 2) - }, [](SpellInfo* spellInfo) - { - spellInfo->_GetEffect(EFFECT_1).Effect = SPELL_EFFECT_APPLY_AURA; - spellInfo->_GetEffect(EFFECT_1).ApplyAuraName = SPELL_AURA_ADD_FLAT_MODIFIER; - spellInfo->_GetEffect(EFFECT_1).MiscValue = SPELLMOD_EFFECT2; - spellInfo->_GetEffect(EFFECT_1).SpellClassMask = flag96(0x00000000, 0x00004000, 0x00000000); - }); - // Improved Shadowform (Rank 1) ApplySpellFix({ 47569 }, [](SpellInfo* spellInfo) { |
