mirror of
https://github.com/mangosfour/server.git
synced 2025-12-19 22:37:05 +00:00
[c12572] Add stacking exception for spells 53456 and 53421
This commit is contained in:
parent
dcc087a360
commit
e241dd61ca
2 changed files with 6 additions and 1 deletions
|
|
@ -2097,6 +2097,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
|
|||
(spellInfo_2->Id == 50442 && spellInfo_1->Id == 47941))
|
||||
return false;
|
||||
|
||||
// Impale aura and Submerge
|
||||
if ((spellInfo_1->Id == 53456 && spellInfo_2->Id == 53421) ||
|
||||
(spellInfo_2->Id == 53456 && spellInfo_1->Id == 53421))
|
||||
return false;
|
||||
|
||||
break;
|
||||
}
|
||||
case SPELLFAMILY_MAGE:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "12571"
|
||||
#define REVISION_NR "12572"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue