[c12572] Add stacking exception for spells 53456 and 53421

This commit is contained in:
Xfurry 2013-05-31 09:58:52 +01:00 committed by Antz
parent dcc087a360
commit e241dd61ca
2 changed files with 6 additions and 1 deletions

View file

@ -2097,6 +2097,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
(spellInfo_2->Id == 50442 && spellInfo_1->Id == 47941)) (spellInfo_2->Id == 50442 && spellInfo_1->Id == 47941))
return false; 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; break;
} }
case SPELLFAMILY_MAGE: case SPELLFAMILY_MAGE:

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "12571" #define REVISION_NR "12572"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__