mirror of
https://github.com/mangosfour/server.git
synced 2025-12-16 13: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))
|
(spellInfo_2->Id == 50758 && spellInfo_1->Id == 50756))
|
||||||
return false;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
case SPELLFAMILY_MAGE:
|
case SPELLFAMILY_MAGE:
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "12565"
|
#define REVISION_NR "12566"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue