fix(Core/Spells): Chromatic Resistance Aura shouldn't give holy resis… (#19549)

fix(Core/Spells): Chromatic Resistance Aura shouldn't give holy resistance
This commit is contained in:
avarishd
2024-08-03 18:02:49 +03:00
committed by GitHub
parent ee8c103d3d
commit fcdc50306f

View File

@@ -4806,6 +4806,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_1].Amplitude = 500;
});
// Chromatic Resistance Aura
ApplySpellFix({ 41453 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_0].MiscValue = 124;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];