From 3c67ea6f67240314e4ea669060bef126b8035ebb Mon Sep 17 00:00:00 2001 From: megamage Date: Sat, 6 Dec 2008 04:48:39 +0300 Subject: [PATCH] [6877] Fix Prayer of Mending. Use original caster's healing bonus. --- src/game/SpellEffects.cpp | 2 +- src/shared/revision_nr.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 0090fc4b7..bec0756b8 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -2195,7 +2195,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 ) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index a20708ae8..c2c949764 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "6876" + #define REVISION_NR "6877" #endif // __REVISION_NR_H__