diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 1abc174eb..21aac81fb 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -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: diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 642898013..6a3693b42 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "12571" + #define REVISION_NR "12572" #endif // __REVISION_NR_H__