[c12621] Add stacking exception for spells 57494 and 57492

This commit is contained in:
Xfurry 2013-05-31 12:21:33 +01:00 committed by Antz
parent af4cf28fa2
commit da15d50aa2
2 changed files with 6 additions and 1 deletions

View file

@ -2165,6 +2165,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
(spellInfo_2->Id == 45665 && spellInfo_1->Id == 45661))
return false;
// Flame Tsunami Visual and Flame Tsunami Damage Aura
if ((spellInfo_1->Id == 57494 && spellInfo_2->Id == 57492) ||
(spellInfo_2->Id == 57494 && spellInfo_1->Id == 57492))
return false;
break;
}
case SPELLFAMILY_MAGE:

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12620"
#define REVISION_NR "12621"
#endif // __REVISION_NR_H__