mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-09 08:17:56 +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;
|
spellInfo->ManaCostPercentage = 0;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Shadowmeld
|
||||||
|
ApplySpellFix({ 58984 }, [](SpellEntry* spellInfo)
|
||||||
|
{
|
||||||
|
spellInfo->AttributesEx3 |= SPELL_ATTR3_ONLY_ON_PLAYER;
|
||||||
|
});
|
||||||
|
|
||||||
// Flare activation speed
|
// Flare activation speed
|
||||||
ApplySpellFix({ 1543 }, [](SpellEntry* spellInfo)
|
ApplySpellFix({ 1543 }, [](SpellEntry* spellInfo)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user