diff options
author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2025-02-06 20:11:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-06 20:11:21 +0100 |
commit | 320c44e8e74dbd6657cba227d4b16fed1e8aba7d (patch) | |
tree | 5adb927af1fee4a4bc4802969c56a25221cb96d1 /src | |
parent | 8b7dce6521323e788ebf28297ec941a6f9bf876f (diff) |
Scripts/Spells: Add Divine Storm target cap (#30613)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index cfa2d551ab5..12876c1519f 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -5262,6 +5262,12 @@ void SpellMgr::LoadSpellInfoTargetCaps() spellInfo->_LoadSqrtTargetLimit(5, 0, 389693, EFFECT_1, {}, {}); }); + // Divine Storm + ApplySpellFix({ 53385 }, [](SpellInfo* spellInfo) + { + spellInfo->_LoadSqrtTargetLimit(5, 0, {}, EFFECT_1, {}, {}); + }); + TC_LOG_INFO("server.loading", ">> Loaded SpellInfo target caps in {} ms", GetMSTimeDiffToNow(oldMSTime)); } |