Skip to content

Commit

Permalink
fix(Core/Spells): Haunted should not be right-clickable (#17864)
Browse files Browse the repository at this point in the history
fix(Core/Spells): Haunted

#16248
  • Loading branch information
Kitzunu committed Nov 26, 2023
1 parent 8b9d002 commit 911f07c
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 @@ -4632,6 +4632,12 @@ void SpellMgr::LoadSpellInfoCorrections()
spellInfo->AttributesEx5 |= SPELL_ATTR5_DO_NOT_DISPLAY_DURATION;
});

// Haunted
ApplySpellFix({ 53768 }, [](SpellInfo* spellInfo)
{
spellInfo->Attributes |= SPELL_ATTR0_NO_AURA_CANCEL;
});

for (uint32 i = 0; i < GetSpellInfoStoreSize(); ++i)
{
SpellInfo* spellInfo = mSpellInfoMap[i];
Expand Down

0 comments on commit 911f07c

Please sign in to comment.