fix(Core/Spells): Domination affect max 5 targets (#18555)
This commit is contained in:
parent
7a7ea27293
commit
3bcdc4d23e
1 changed files with 6 additions and 0 deletions
|
|
@ -4798,6 +4798,12 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->AttributesEx2 |= SPELL_ATTR2_IGNORE_LINE_OF_SIGHT;
|
||||
});
|
||||
|
||||
// Domination
|
||||
ApplySpellFix({ 37135 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->MaxAffectedTargets = 5;
|
||||
});
|
||||
|
||||
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
|
||||
{
|
||||
SpellInfo* spellInfo = mSpellInfoMap[i];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue