Core/Spells: Added aoe target cap for demon hunter talent "Fel Barrage" (#30554)

This commit is contained in:
Aqua Deus
2025-01-16 14:08:08 +01:00
committed by GitHub
parent 49bc69a27e
commit 52dc1359cc

View File

@@ -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)
{