Skip to content

Commit

Permalink
Spell: Add check for cancel aura when no icon
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed May 5, 2024
1 parent 2e044e0 commit 36875f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/game/Spells/SpellHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,9 @@ void WorldSession::HandleCancelAuraOpcode(WorldPacket& recvPacket)
if (spellInfo->HasAttribute(SPELL_ATTR_NO_AURA_CANCEL))
return;

if (spellInfo->HasAttribute(SPELL_ATTR_EX_NO_AURA_ICON))
return;

if (IsPassiveSpell(spellInfo))
return;

Expand Down

0 comments on commit 36875f5

Please sign in to comment.