fix(Core/Spells): Fixed Paladin's T2 8P bonus. (#12999)

This commit is contained in:
UltraNix 2022-09-14 00:38:41 +02:00 committed by GitHub
parent a391dbf54c
commit cd337dbe5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4379,6 +4379,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->Attributes |= SPELL_ATTR0_ALLOW_WHILE_SITTING;
});
// Judgement (Paladin T2 8P Bonus)
ApplySpellFix({ 23591 }, [](SpellInfo* spellInfo)
{
spellInfo->ProcFlags = PROC_FLAG_DONE_SPELL_MELEE_DMG_CLASS;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];