fix(Core/Spell): Detect Undead (#4310)

This commit is contained in:
Kitzunu
2021-02-01 16:21:33 +01:00
committed by GitHub
parent c8f43d8584
commit 683ddf6c8d

View File

@@ -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)
{