diff options
-rw-r--r-- | src/game/SpellMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index e77bce1fc4d..a66ea70755f 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1361,7 +1361,7 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2, bool return true; // spells with different specific always stack - if(spellId_spec_1 || spellId_spec_2) + if(spellId_spec_1 != spellId_spec_2) return false; if(spellInfo_1->SpellFamilyName != spellInfo_2->SpellFamilyName) |