From f1a880a4ed4dc40eba018729f4abc85e85ca7352 Mon Sep 17 00:00:00 2001 From: Hundekuchen Date: Wed, 16 Mar 2011 03:35:52 +0300 Subject: [PATCH] [11257] Fix overwrite spells 33649 and 20572, other cases with same icon. 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 462647974..c02f1a463 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1871,6 +1871,10 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons (spellInfo_2->Id == 8326 && spellInfo_1->Id == 20584)) return false; + // Blood Fury and Rage of the Unraveller + if (spellInfo_1->SpellIconID == 1662 && spellInfo_2->SpellIconID == 1662) + return false; + // Kindred Spirits if (spellInfo_1->SpellIconID == 3559 && spellInfo_2->SpellIconID == 3559) return false; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3ee6e9a30..75d0a7573 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 "11256" + #define REVISION_NR "11257" #endif // __REVISION_NR_H__