fix(Core/Spells): Fix aura interruption flags for Scarlet Raven Priest Image for quest A Fall From Grace (#17828)
* Update src/server/game/Spells/SpellInfoCorrections.cpp --------- Co-authored-by: Andrew <47818697+Nyeriah@users.noreply.github.com>
This commit is contained in:
parent
b65e67b8bd
commit
1850c974a4
1 changed files with 6 additions and 0 deletions
|
|
@ -57,6 +57,12 @@ void SpellMgr::LoadSpellInfoCorrections()
|
|||
spellInfo->AttributesEx3 |= SPELL_ATTR3_ALWAYS_HIT;
|
||||
});
|
||||
|
||||
// Scarlet Raven Priest Image
|
||||
ApplySpellFix({ 48763, 48761 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
spellInfo->AuraInterruptFlags &= ~AURA_INTERRUPT_FLAG_SPELL_ATTACK;
|
||||
});
|
||||
|
||||
// Has Brewfest Mug
|
||||
ApplySpellFix({ 42533 }, [](SpellInfo* spellInfo)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue