From da15d50aa273221eec7f135d69d30da9b6cb8f29 Mon Sep 17 00:00:00 2001 From: Xfurry Date: Fri, 31 May 2013 12:21:33 +0100 Subject: [PATCH] [c12621] Add stacking exception for spells 57494 and 57492 --- src/game/SpellMgr.cpp | 5 +++++ src/shared/revision_nr.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index f02f7e6d5..72fa773e0 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -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: diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ad31c57f6..434a4016e 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 "12620" + #define REVISION_NR "12621" #endif // __REVISION_NR_H__