Core/Spell: fix weird DBC data for Elixir of Detect Undead

Closes #19853
This commit is contained in:
ariel-
2017-06-05 17:09:52 -03:00
parent 17c3374d1f
commit da228fd163

View File

@@ -2872,6 +2872,14 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[0].TargetA = SpellImplicitTargetInfo(TARGET_DEST_DB);
});
// Detect Undead
ApplySpellFix({ 11389 }, [](SpellInfo* spellInfo)
{
spellInfo->PowerType = 0;
spellInfo->ManaCost = 0;
spellInfo->ManaPerSecond = 0;
});
// Drink! (Brewfest)
ApplySpellFix({ 42436 }, [](SpellInfo* spellInfo)
{