Skip to content

Commit

Permalink
fix(Core/Spells): Chromatic Resistance Aura shouldn't give holy resis… (
Browse files Browse the repository at this point in the history
azerothcore#19549)

fix(Core/Spells): Chromatic Resistance Aura shouldn't give holy resistance
  • Loading branch information
avarishd committed Aug 3, 2024
1 parent ee8c103 commit fcdc503
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/server/game/Spells/SpellInfoCorrections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit fcdc503

Please sign in to comment.