fix(Core/Spells): General Vezax' Corrupted Rage and Wisdom (#26677)

This commit is contained in:
sogladev
2026-07-18 23:00:33 +02:00
committed by GitHub
parent 9f8401cad1
commit 4ab4e9edb0

View File

@@ -5208,6 +5208,24 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Effects[EFFECT_0].TargetA = SpellImplicitTargetInfo(TARGET_DEST_CASTER);
});
// 68415 Corrupted Rage
ApplySpellFix({ 68415 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_1].SpellClassMask = flag96(0, 0x20000, 0);
});
// 31930 Judgements of the Wise
ApplySpellFix({ 31930 }, [](SpellInfo* spellInfo)
{
spellInfo->SpellFamilyFlags = flag96(0x200, 0, 0);
});
// 64646 Corrupted Wisdom
ApplySpellFix({ 64646 }, [](SpellInfo* spellInfo)
{
spellInfo->Effects[EFFECT_1].SpellClassMask = flag96(0x200, 0, 0);
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];