diff options
author | QAston <none@none> | 2009-04-20 12:38:35 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-04-20 12:38:35 +0200 |
commit | 9ddd7cf660fc73f2a3963a0f88c16f7d1d823a41 (patch) | |
tree | 5ac69cb495fcd68c21d2ac7d1bc809715529356b /src/game/SpellEffects.cpp | |
parent | 8ad26e0db6cd9550373b9b81902e03c232eb9f4d (diff) |
Implement attribute flag SPELL_ATTR_EX2_TRIGGERED_CAN_TRIGGER, fix improved fire nova totem.
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r-- | src/game/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 2fbd4a3ade1..fe7a3b3a68c 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -2571,9 +2571,9 @@ void Spell::SpellDamageHeal(uint32 /*i*/) // Riptide - increase healing done by Chain Heal else if (m_spellInfo->SpellFamilyName==SPELLFAMILY_SHAMAN && m_spellInfo->SpellFamilyFlags[0] & 0x100) { + addhealth = caster->SpellHealingBonus(unitTarget, m_spellInfo, addhealth, HEAL); if (AuraEffect * aurEff = unitTarget->GetAura(SPELL_AURA_PERIODIC_HEAL, SPELLFAMILY_SHAMAN, 0, 0, 0x10, m_originalCasterGUID)) { - addhealth = caster->SpellHealingBonus(unitTarget, m_spellInfo, addhealth, HEAL); addhealth *= 1.25f; // consume aura unitTarget->RemoveAura(aurEff->GetParentAura()); |