mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 13:46:24 +00:00
fix(Core/Spells): Shadowmeld targets only players. (#6136)
- Closes #5541 - Closes https://github.com/chromiecraft/chromiecraft/issues/483
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user