Skip to content

Commit

Permalink
fix(Core/Spells): Fix aura interruption flags for Scarlet Raven Pries…
Browse files Browse the repository at this point in the history
…t Image for quest A Fall From Grace (azerothcore#17828)



* Update src/server/game/Spells/SpellInfoCorrections.cpp

---------

Co-authored-by: Andrew <[email protected]>
  • Loading branch information
Dr-Arayashiki and Nyeriah authored Nov 23, 2023
1 parent b65e67b commit 1850c97
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/server/game/Spells/SpellInfoCorrections.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit 1850c97

Please sign in to comment.