[11698] Fixed spells 50756 and 50758 stack check

Original patch provided by Xfurry.
This commit is contained in:
VladimirMangos 2011-06-28 20:14:02 +04:00
parent 178654bbba
commit 75cfbb41c8
2 changed files with 6 additions and 1 deletions

View file

@ -1927,6 +1927,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
if (spellInfo_1->SpellIconID == 2834 && spellInfo_2->SpellIconID == 2834)
return false;
// Unstable Sphere Timer and Unstable Sphere Passive
if ((spellInfo_1->Id == 50758 && spellInfo_2->Id == 50756) ||
(spellInfo_2->Id == 50758 && spellInfo_1->Id == 50756))
return false;
break;
}
case SPELLFAMILY_MAGE: