Skip to content

Commit

Permalink
Spell: Fix bool logic typo for Spirit of Zandalar
Browse files Browse the repository at this point in the history
  • Loading branch information
killerwife committed May 6, 2023
1 parent bca0228 commit 2fa0db7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/Spells/SpellMgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@ inline bool IsStackableAuraEffect(SpellEntry const* entry, SpellEntry const* ent
return true;
if (entry->Id == 15366 || entry2->Id == 15366) // Songflower Serenade - stacks with everything
return true;
if (entry->Id == 24425 || entry2->Id == 24425) // Spirit of Zandalar - shouldnt stack with itself
if (entry->Id == 24425 && entry2->Id == 24425) // Spirit of Zandalar - shouldnt stack with itself
return false;
if (entry->EffectMiscValue[i] != entry2->EffectMiscValue[similar])
break;
Expand Down

0 comments on commit 2fa0db7

Please sign in to comment.