mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 10:37:06 +00:00
[c12578] Implement spells 53035, 53036 and 53037
This commit is contained in:
parent
f34e07ae9f
commit
537d6e98d9
3 changed files with 34 additions and 6 deletions
|
|
@ -2102,6 +2102,21 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
(spellInfo_2->Id == 53456 && spellInfo_1->Id == 53421))
|
||||
return false;
|
||||
|
||||
// Summon Anub'ar Champion Periodic and Summon Anub'ar Necromancer Periodic
|
||||
if ((spellInfo_1->Id == 53035 && spellInfo_2->Id == 53036) ||
|
||||
(spellInfo_2->Id == 53035 && spellInfo_1->Id == 53036))
|
||||
return false;
|
||||
|
||||
// Summon Anub'ar Necromancer Periodic and Summon Anub'ar Crypt Fiend Periodic
|
||||
if ((spellInfo_1->Id == 53036 && spellInfo_2->Id == 53037) ||
|
||||
(spellInfo_2->Id == 53036 && spellInfo_1->Id == 53037))
|
||||
return false;
|
||||
|
||||
// Summon Anub'ar Crypt Fiend Periodic and Summon Anub'ar Champion Periodic
|
||||
if ((spellInfo_1->Id == 53037 && spellInfo_2->Id == 53035) ||
|
||||
(spellInfo_2->Id == 53037 && spellInfo_1->Id == 53035))
|
||||
return false;
|
||||
|
||||
break;
|
||||
}
|
||||
case SPELLFAMILY_MAGE:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue