mirror of
https://github.com/liyunfan1223/azerothcore-wotlk.git
synced 2026-08-07 15:28:02 +00:00
fix(Core/Spells): General Vezax' Corrupted Rage and Wisdom (#26677)
This commit is contained in:
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user