fix(Core/Spells): Death's Respite should not generate threat. (#12807)

* fix(Core/Spells): Death's Respite should not generate threat.

Fixes #12798

* Update SpellInfoCorrections.cpp
This commit is contained in:
UltraNix
2022-08-27 14:45:09 +02:00
committed by GitHub
parent 0f0beb0148
commit f7de5235f8

View File

@@ -4361,6 +4361,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx3 |= SPELL_ATTR3_ALWAYS_HIT;
});
// Death's Respite
ApplySpellFix({ 67731, 68305 }, [](SpellInfo* spellInfo)
{
spellInfo->AttributesEx3 |= SPELL_ATTR3_SUPRESS_TARGET_PROCS;
});
for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];