fix(Core/Spell): [Potion] Elixir of Minor Fortitude effect disappear (#4217)

This commit is contained in:
r0m1ntik
2021-01-08 23:26:17 +01:00
committed by GitHub
parent ce7b503e7b
commit b35d3a8fb8
+7
View File
@@ -3299,6 +3299,13 @@ void SpellMgr::LoadDbcDataCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_IGNORE_HIT_RESULT;
});
// Elixir of Minor Fortitude
ApplySpellFix({ 2378 }, [](SpellEntry* spellInfo)
{
spellInfo->manaCost = 0;
spellInfo->manaPerSecond = 0;
});
// Evergrove Druid Transform Crow
ApplySpellFix({ 38776 }, [](SpellEntry* spellInfo)
{