[6877] Fix Prayer of Mending. Use original caster's healing bonus.

This commit is contained in:
megamage 2008-12-06 04:48:39 +03:00
parent 223fe7321f
commit 3c67ea6f67
2 changed files with 2 additions and 2 deletions

View file

@ -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 )

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "6876"
#define REVISION_NR "6877"
#endif // __REVISION_NR_H__