fix(Core/Spells): Shadowmeld targets only players. (#6136)

- Closes #5541
- Closes https://github.com/chromiecraft/chromiecraft/issues/483
This commit is contained in:
UltraNix
2021-06-05 21:43:19 +02:00
committed by GitHub
parent f819cf86fd
commit 8a09a0bc21

View File

@@ -7280,6 +7280,12 @@ void SpellMgr::LoadDbcDataCorrections()
spellInfo->ManaCostPercentage = 0;
});
// Shadowmeld
ApplySpellFix({ 58984 }, [](SpellEntry* spellInfo)
{
spellInfo->AttributesEx3 |= SPELL_ATTR3_ONLY_ON_PLAYER;
});
// Flare activation speed
ApplySpellFix({ 1543 }, [](SpellEntry* spellInfo)
{