mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[11791] Implement spells 69048, 69051 and 69023
Signed-off-by: Schmoozerd <schmoozerd@scriptdev2.com>
This commit is contained in:
parent
8d58bfe7ed
commit
0bb3a4c84d
5 changed files with 36 additions and 1 deletions
|
|
@ -1915,6 +1915,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
if (spellInfo_1->SpellIconID == 2606 && spellInfo_2->SpellIconID == 2606)
|
||||
return false;
|
||||
|
||||
// Mirrored Soul (FoS - Devourer) - and other Boss spells
|
||||
if (spellInfo_1->SpellIconID == 3176 && spellInfo_2->SpellIconID == 3176)
|
||||
return false;
|
||||
|
||||
|
||||
// Brood Affliction: Bronze
|
||||
if ((spellInfo_1->Id == 23170 && spellInfo_2->Id == 23171) ||
|
||||
(spellInfo_2->Id == 23170 && spellInfo_1->Id == 23171))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue