diff options
author | Aqua Deus <95978183+aquadeus@users.noreply.github.com> | 2025-01-16 14:08:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 14:08:08 +0100 |
commit | 52dc1359cc78b5d8a88bf32e4bd50d53fcd03d11 (patch) | |
tree | 626ff27be9f908408aab46777736198aaa648368 | |
parent | 49bc69a27e7155bea7aad501c116c9fc8f9f3e78 (diff) |
Core/Spells: Added aoe target cap for demon hunter talent "Fel Barrage" (#30554)
-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 58448315d82..cf6734b2df4 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -5268,6 +5268,12 @@ void SpellMgr::LoadSpellInfoTargetCaps() spellInfo->_LoadSqrtTargetLimit(8, 0, {}, EFFECT_1, {}, {}); }); + // Fel Barrage + ApplySpellFix({ 258926 }, [](SpellInfo* spellInfo) + { + spellInfo->_LoadSqrtTargetLimit(5, 0, {}, EFFECT_1, {}, {}); + }); + // Inner Demon ApplySpellFix({ 390137 }, [](SpellInfo* spellInfo) { |