diff options
| author | Ovah <dreadkiller@gmx.de> | 2020-04-25 19:04:31 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-25 19:04:31 +0200 |
| commit | 030d942efe5b70b3551f82ae26fc2391b13849e3 (patch) | |
| tree | e32ddff9fdced0e711f7750ede8a87306f69d576 /src/server/game | |
| parent | af76dc6b88bdfc910a93b2549c1a89afdeb41b91 (diff) | |
Scripts/Antorus: implement Garothi Worldbreaker encounter for normal and heroic difficulty
* added base script support for the encounter for normal and heroic difficulty
* added instance script for Antorus the Burning Throne
* added sniffed template data for involved gameobjects
* added encounter related spawns to Antorus the Burning Throne
* added instance encounter entry for Garothi Worldbreaker
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) { |
