From c59dcbbb852142cc78851d5bb3a983827202f770 Mon Sep 17 00:00:00 2001 From: Nevan Date: Sun, 23 Aug 2009 20:14:51 +0200 Subject: [PATCH] *Fix Glyph of Wild Growth --HG-- branch : trunk --- src/game/Spell.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index a18c05e63b..07d69bf25b 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -2528,7 +2528,12 @@ void Spell::SelectEffectTargets(uint32 i, uint32 cur) } unitList.clear(); - while(!healedMembers.empty() && unitList.size()<5) + uint32 maxsize = 5; + + if (m_spellInfo->SpellFamilyName == SPELLFAMILY_DRUID && m_spellInfo->SpellFamilyFlags[1] & 0x04000000) + maxsize += m_caster->HasAura(62970) ? 1 : 0; + + while(!healedMembers.empty() && unitList.size()