fix(Core/Spell): Detect Undead (#4310)
This commit is contained in:
parent
c8f43d8584
commit
683ddf6c8d
1 changed files with 8 additions and 0 deletions
|
|
@ -3306,6 +3306,14 @@ void SpellMgr::LoadDbcDataCorrections()
|
|||
spellInfo->manaPerSecond = 0;
|
||||
});
|
||||
|
||||
// Elixir of Detect Undead
|
||||
ApplySpellFix({ 11389 }, [](SpellEntry* spellInfo)
|
||||
{
|
||||
spellInfo->powerType = POWER_MANA;
|
||||
spellInfo->manaCost = 0;
|
||||
spellInfo->manaPerSecond = 0;
|
||||
});
|
||||
|
||||
// Evergrove Druid Transform Crow
|
||||
ApplySpellFix({ 38776 }, [](SpellEntry* spellInfo)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue