From 917bf34a9855d68ebe13e94d9beeb1473f729230 Mon Sep 17 00:00:00 2001 From: megamage Date: Sat, 15 Aug 2009 20:36:21 -0500 Subject: *better handle effect 140. do not consider bp > 0 as custom damage. --HG-- branch : trunk --- src/game/SpellEffects.cpp | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 94352859334..4824b260334 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -2009,9 +2009,22 @@ void Spell::EffectForceCast(uint32 i) } if (damage) - unitTarget->CastCustomSpell(unitTarget, spellInfo->Id, &damage, NULL, NULL, true, NULL, NULL, m_originalCasterGUID); - else - unitTarget->CastSpell(unitTarget, spellInfo, true, NULL, NULL, m_originalCasterGUID); + { + if(m_spellInfo->EffectBasePoints[i] > 0) + { + switch(m_spellInfo->Id) + { + case 52588: unitTarget->RemoveAura(damage); break; + } + } + else + { + unitTarget->CastCustomSpell(unitTarget, spellInfo->Id, &damage, NULL, NULL, true, NULL, NULL, m_originalCasterGUID); + return; + } + } + + unitTarget->CastSpell(unitTarget, spellInfo, true, NULL, NULL, m_originalCasterGUID); } void Spell::EffectTriggerSpell(uint32 i) -- cgit v1.2.3