diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index b361a2825..ea6f7b9b7 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1568,6 +1568,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons (spellId_2 == 33891 && spellId_1 == 34123)) return false; + // Lifebloom and Wild Growth + if (spellInfo_1->SpellIconID == 2101 && spellInfo_2->SpellIconID == 2864 || + spellInfo_2->SpellIconID == 2101 && spellInfo_1->SpellIconID == 2864 ) + return false; + // Innervate and Glyph of Innervate and some other spells if (spellInfo_1->SpellIconID == 62 && spellInfo_2->SpellIconID == 62) return false; diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 638ad70bf..e138641e9 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 "9077" + #define REVISION_NR "9078" #endif // __REVISION_NR_H__