Scripts/Forge of Souls: Fixed spell Soul Sickness (#23843)

This commit is contained in:
Keader
2019-10-03 08:49:05 -03:00
committed by GitHub
parent 16fde1ffad
commit 34ee2effc8
3 changed files with 43 additions and 0 deletions

View File

@@ -4894,6 +4894,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_1].SpellClassMask[0] |= 0x00004000; // Drain soul
});
// Soul Sickness (Forge of Souls)
ApplySpellFix({ 69131 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_1].ApplyAuraName = SPELL_AURA_MOD_DECREASE_SPEED;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];