fix(Core/Spells): Shadowmeld targets only players. (#6136)
- Closes #5541 - Closes https://github.com/chromiecraft/chromiecraft/issues/483
This commit is contained in:
parent
f819cf86fd
commit
8a09a0bc21
1 changed files with 6 additions and 0 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue