[9078] Allow stacking healing buffs from spell 33763 and 48438, and ranks.

Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
Splinter 2009-12-28 23:54:38 +03:00 committed by VladimirMangos
parent 9c98bd92e2
commit 15d4388696
2 changed files with 6 additions and 1 deletions

View file

@ -1568,6 +1568,11 @@ bool SpellMgr::IsNoStackSpellDueToSpell(uint32 spellId_1, uint32 spellId_2) cons
(spellId_2 == 33891 && spellId_1 == 34123)) (spellId_2 == 33891 && spellId_1 == 34123))
return false; 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 // Innervate and Glyph of Innervate and some other spells
if (spellInfo_1->SpellIconID == 62 && spellInfo_2->SpellIconID == 62) if (spellInfo_1->SpellIconID == 62 && spellInfo_2->SpellIconID == 62)
return false; return false;

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__ #ifndef __REVISION_NR_H__
#define __REVISION_NR_H__ #define __REVISION_NR_H__
#define REVISION_NR "9077" #define REVISION_NR "9078"
#endif // __REVISION_NR_H__ #endif // __REVISION_NR_H__