fix(Core/Spell): Mixology duration Gift of Arthas (#12982)

Gift of Arthas duration with Mixology should be increased to 1 hour

Closes https://github.com/azerothcore/azerothcore-wotlk/issues/12941
This commit is contained in:
SoglaHash
2022-09-18 00:05:43 +02:00
committed by GitHub
parent 9c4a9178f3
commit 3dde9d904c

View File

@@ -4385,6 +4385,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->ProcFlags = PROC_FLAG_DONE_SPELL_MELEE_DMG_CLASS;
});
// Gift of Arthas
ApplySpellFix({ 11371 }, [](SpellInfo* spellInfo)
{
spellInfo->SpellFamilyName = SPELLFAMILY_POTION;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];