Fix Devouring Plague

- issue https://www.getmangos.eu/issue.php?issueid=664
This commit is contained in:
H0zen 2016-02-11 14:36:30 +02:00
parent 605628c1b1
commit 5247218df4

View File

@ -2469,8 +2469,8 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
break; break;
case SPELLFAMILY_PRIEST: case SPELLFAMILY_PRIEST:
// Devouring Plague and Shadow Vulnerability // Devouring Plague and Shadow Vulnerability
if (((spellInfo_1->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_2->SpellFamilyFlags & UI64LIT(0x800000000))) || if (((spellInfo_1->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_2->SpellFamilyFlags & UI64LIT(0x4000000))) ||
((spellInfo_2->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_1->SpellFamilyFlags & UI64LIT(0x800000000)))) ((spellInfo_2->SpellFamilyFlags & UI64LIT(0x2000000)) && (spellInfo_1->SpellFamilyFlags & UI64LIT(0x4000000))))
{ return false; } { return false; }
// StarShards and Shadow Word: Pain // StarShards and Shadow Word: Pain