fix(Core/Spells): Hand of Protection no longer removes Nalorak's Mangle (#21413)

This commit is contained in:
Jelle Meeus
2025-02-15 17:22:59 +01:00
committed by GitHub
parent a5a8ef92b4
commit b8b38e1e7e

View File

@@ -4870,6 +4870,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].RealPointsPerLevel = 0;
});
// Mangle (Nalorakk)
ApplySpellFix({ 42389 }, [](SpellInfo* spellInfo)
{
spellInfo->SchoolMask = SPELL_SCHOOL_MASK_NATURE;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];