fix(Core/Spells): Fixed Paladin's T2 8P bonus. (#12999)
This commit is contained in:
parent
a391dbf54c
commit
cd337dbe5e
1 changed files with 6 additions and 0 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue