From 77bd6f148a85940e784c614af939e74688580a2c Mon Sep 17 00:00:00 2001 From: Iskander Date: Fri, 1 May 2009 19:23:10 +0200 Subject: *Do not allow 2 same blessings to stack --HG-- branch : trunk --- src/game/SpellMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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) -- cgit v1.2.3