From 5247218df47398352029eee7f3db63a13d2a8627 Mon Sep 17 00:00:00 2001 From: H0zen Date: Thu, 11 Feb 2016 14:36:30 +0200 Subject: [PATCH] Fix Devouring Plague - issue https://www.getmangos.eu/issue.php?issueid=664 --- src/game/Object/SpellMgr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/Object/SpellMgr.cpp b/src/game/Object/SpellMgr.cpp index c857275e..8ebc8713 100644 --- a/src/game/Object/SpellMgr.cpp +++ b/src/game/Object/SpellMgr.cpp @@ -2469,8 +2469,8 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons break; case SPELLFAMILY_PRIEST: // Devouring Plague and Shadow Vulnerability - if (((spellInfo_1->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_2->SpellFamilyFlags & UI64LIT(0x800000000))) || - ((spellInfo_2->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_1->SpellFamilyFlags & UI64LIT(0x800000000)))) + if (((spellInfo_1->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_2->SpellFamilyFlags & UI64LIT(0x4000000))) || + ((spellInfo_2->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_1->SpellFamilyFlags & UI64LIT(0x4000000)))) { return false; } // StarShards and Shadow Word: Pain