diff options
Diffstat (limited to 'src/server/game')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 3c15a374d1b..1dcc18773e1 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3590,6 +3590,20 @@ void SpellMgr::LoadSpellInfoCorrections() }); // ENDOF FIRELANDS SPELLS + // + // ANTORUS THE BURNING THRONE SPELLS + // + + // Decimation + ApplySpellFix({ 244449 }, [](SpellInfo* spellInfo) + { + // For some reason there is a instakill effect that serves absolutely no purpose. + // Until we figure out what it's actually used for we disable it. + const_cast<SpellEffectInfo*>(spellInfo->GetEffect(EFFECT_2))->Effect = 0; + }); + + // ENDOF ANTORUS THE BURNING THRONE SPELLS + // Summon Master Li Fei ApplySpellFix({ 102445 }, [](SpellInfo* spellInfo) { |
