aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormegamage <none@none>2008-11-22 14:42:53 -0600
committermegamage <none@none>2008-11-22 14:42:53 -0600
commit1553dc0edbfb193920d667af831f913b3ece180a (patch)
treec8272a13213613e3e54d2a6494e8c7529b23d3b1 /src
parentd720a80e5c3820e317152fe9aa339b9bd2a860cb (diff)
*Fix Prayer of Mending. Use original caster's healing bonus.
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/SpellEffects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index 40a1ec6b989..56d8c415503 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -2188,7 +2188,7 @@ void Spell::EffectApplyAura(uint32 i)
// Prayer of Mending (jump animation), we need formal caster instead original for correct animation
if( m_spellInfo->SpellFamilyName == SPELLFAMILY_PRIEST && (m_spellInfo->SpellFamilyFlags & 0x00002000000000LL))
- m_caster->CastSpell(unitTarget,41637,true,NULL,Aur);
+ m_caster->CastSpell(unitTarget,41637,true,NULL,Aur,m_originalCasterGUID);
}
void Spell::EffectUnlearnSpecialization( uint32 i )