fix(Core/Spells): Removed MECHANIC_POLYMORPH from PX-238 Winter Wondervolt spells. (#10302)

Fixed #9719
This commit is contained in:
UltraNix
2022-01-30 20:56:31 +01:00
committed by GitHub
parent 3a53eb3dbb
commit 0c09e88f64

View File

@@ -7580,6 +7580,12 @@ void SpellMgr::LoadDbcDataCorrections()
spellInfo->AttributesEx4 |= SPELL_ATTR4_AURA_EXPIRES_OFFLINE;
});
// PX-238 Winter Wondervolt
ApplySpellFix({ 26157, 26272, 26273, 26274 }, [](SpellEntry* spellInfo)
{
spellInfo->Mechanic = 0;
});
for (uint32 i = 0; i < sSpellStore.GetNumRows(); ++i)
{
SpellEntry* spellInfo = (SpellEntry*)sSpellStore.LookupEntry(i);