mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +00:00
[c12565] Add stacking exception for spells 51019 and 51024
This commit is contained in:
parent
a340c67f43
commit
d1e9390e82
2 changed files with 6 additions and 1 deletions
|
|
@ -2087,6 +2087,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
(spellInfo_2->Id == 50758 && spellInfo_1->Id == 50756))
|
||||
return false;
|
||||
|
||||
// Arcane Beam Periodic and Arcane Beam Visual
|
||||
if ((spellInfo_1->Id == 51019 && spellInfo_2->Id == 51024) ||
|
||||
(spellInfo_2->Id == 51019 && spellInfo_1->Id == 51024))
|
||||
return false;
|
||||
|
||||
break;
|
||||
}
|
||||
case SPELLFAMILY_MAGE:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue