diff options
author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2025-06-12 18:26:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-12 18:26:56 +0200 |
commit | 58a380b73ac3ed779175be463a1dc3da7c65c04d (patch) | |
tree | 10b28c2b41d99040eeaf96e540857632ca97e18a /src | |
parent | 1f5f245c02e92b967abfcd74858669be98a49333 (diff) |
Scripts/Spells: Implement monk talent Keg Smash target limit (#31048)
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 40e4f4a9e1b..f8b06bf8ec7 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -5368,6 +5368,12 @@ void SpellMgr::LoadSpellInfoTargetCaps() spellInfo->_LoadSqrtTargetLimit(5, 0, {}, EFFECT_4, {}, {}); }); + // Keg Smash + ApplySpellFix({ 121253 }, [](SpellInfo* spellInfo) + { + spellInfo->_LoadSqrtTargetLimit(5, 0, {}, EFFECT_6, {}, {}); + }); + // Odyn's Fury ApplySpellFix({ 385060, 385061, 385062 }, [](SpellInfo* spellInfo) { |