fix(Core/Spells): Don't allow to purge Azuregos' Reflect (#10723)

This commit is contained in:
Nefertumm
2022-02-22 02:39:29 -03:00
committed by GitHub
parent 9a67c0f0b0
commit 33b0183440

View File

@@ -4167,6 +4167,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_ONLY_ON_PLAYER;
});
// Reflection
ApplySpellFix({ 22067 }, [](SpellInfo* spellInfo)
{
spellInfo->Dispel = DISPEL_NONE;
});
// Focused Assault
// Brutal Assault
ApplySpellFix({ 46392, 46393 }, [](SpellInfo* spellInfo)