From adcfd1e078a75d87a137f67436a80d34ade05091 Mon Sep 17 00:00:00 2001 From: laise Date: Fri, 16 Oct 2009 06:08:47 +0400 Subject: [PATCH] [8650] Allow stacking some paladin spell auras. Signed-off-by: VladimirMangos --- src/game/SpellMgr.cpp | 4 ++++ src/shared/revision_nr.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 7fc30c697..8df296ca2 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1633,6 +1633,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons // Beacon of Light and Light's Beacon if ((spellInfo_1->SpellIconID == 3032) && (spellInfo_2->SpellIconID == 3032)) return false; + + // Concentration Aura and Improved Concentration Aura and Aura Mastery + if ((spellInfo_1->SpellIconID == 1487) && (spellInfo_2->SpellIconID == 1487)) + return false; } // Combustion and Fire Protection Aura (multi-family check) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 15117dd98..d2bc5fe85 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 "8649" + #define REVISION_NR "8650" #endif // __REVISION_NR_H__