From cd824b50fe9864883eb29a0651e1f62b6fd80154 Mon Sep 17 00:00:00 2001 From: Anubisss Date: Tue, 29 Dec 2009 21:48:01 +0100 Subject: Implement Glyph of Circle of Healing. --HG-- branch : trunk --- src/game/Spell.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/game/Spell.cpp b/src/game/Spell.cpp index fc65773f1cf..8d6ce04f6ff 100644 --- a/src/game/Spell.cpp +++ b/src/game/Spell.cpp @@ -2520,8 +2520,11 @@ void Spell::SelectEffectTargets(uint32 i, uint32 cur) unitList.clear(); uint32 maxsize = 5; - if (m_spellInfo->SpellFamilyName == SPELLFAMILY_DRUID && m_spellInfo->SpellFamilyFlags[1] & 0x04000000) - maxsize += m_caster->HasAura(62970) ? 1 : 0; + if (m_spellInfo->SpellFamilyName == SPELLFAMILY_DRUID && m_spellInfo->SpellFamilyFlags[1] & 0x04000000) // Wild Growth + maxsize += m_caster->HasAura(62970) ? 1 : 0; // Glyph of Wild Growth + + if (m_spellInfo->SpellFamilyName == SPELLFAMILY_PRIEST && m_spellInfo->SpellFamilyFlags[0] & 0x10000000 && m_spellInfo->SpellIconID == 2214) // Circle of Healing + maxsize += m_caster->HasAura(55675) ? 1 : 0; // Glyph of Circle of Healing while(!healedMembers.empty() && unitList.size()