diff options
| author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2025-11-14 14:37:31 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-14 14:37:31 +0100 |
| commit | d5b2dcb1aaa14317b47e20735e5f55a93a73cad4 (patch) | |
| tree | 39565d5c2f5194e55c4faebdb73a52948cbe364e /src/server/game/Spells | |
| parent | b6526114f533373dfcf71f7a44f4779214fbdd4e (diff) | |
Scripts/Spells: Implement demon hunter talent Sigil of Spite (and the shadowlands covenant ability it was copypasted from - Elysian Decree) (#31394)
Co-authored-by: Shauren <shauren.trinity@gmail.com>
Diffstat (limited to 'src/server/game/Spells')
| -rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 0dc27c80927..93e7a0a4c82 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -5458,6 +5458,18 @@ void SpellMgr::LoadSpellInfoTargetCaps() spellInfo->_LoadSqrtTargetLimit(5, 0, 190411, EFFECT_2, {}, {}); }); + // Elysian Decree (Kyrian) + ApplySpellFix({ 307046 }, [](SpellInfo* spellInfo) + { + spellInfo->_LoadSqrtTargetLimit(5, 0, 306830, EFFECT_0, {}, {}); + }); + + // Sigil of Spite + ApplySpellFix({ 389860 }, [](SpellInfo* spellInfo) + { + spellInfo->_LoadSqrtTargetLimit(5, 0, 390163, EFFECT_0, {}, {}); + }); + TC_LOG_INFO("server.loading", ">> Loaded SpellInfo target caps in {} ms", GetMSTimeDiffToNow(oldMSTime)); } |
