diff options
author | Iskander <none@none> | 2009-05-01 19:23:10 +0200 |
---|---|---|
committer | Iskander <none@none> | 2009-05-01 19:23:10 +0200 |
commit | 77bd6f148a85940e784c614af939e74688580a2c (patch) | |
tree | 73c7230c07fe5aecfb5e16c74439cac8897e7a41 | |
parent | 623c97edd696f23a65bdfcaf1ee9aa5094260c7d (diff) |
*Do not allow 2 same blessings to stack
--HG--
branch : trunk
-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) |