From 8a279eda4b187d8214d65549dc7008a983dbae44 Mon Sep 17 00:00:00 2001 From: Astellar Date: Sun, 19 Jul 2009 01:51:34 +0400 Subject: [PATCH] [8199] Allow stack auras from different spells triggred at talent 59672 use. 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 d5fe01e07..77464b817 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1176,6 +1176,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons if( (spellInfo_1->SpellIconID == 313 || spellInfo_1->SpellIconID == 2039) && (spellInfo_2->SpellIconID == 544 || spellInfo_2->SpellIconID == 91) || (spellInfo_2->SpellIconID == 313 || spellInfo_2->SpellIconID == 2039) && (spellInfo_1->SpellIconID == 544 || spellInfo_1->SpellIconID == 91) ) return false; + + // Metamorphosis, diff effects + if (spellInfo_1->SpellIconID == 3314 && spellInfo_2->SpellIconID == 3314) + return false; } // Detect Invisibility and Mana Shield (multi-family check) if( spellInfo_1->Id == 132 && spellInfo_2->SpellIconID == 209 && spellInfo_2->SpellVisual[0] == 968 ) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3d8bac33a..94e2d5ed7 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 "8198" + #define REVISION_NR "8199" #endif // __REVISION_NR_H__