Skip to content

Commit

Permalink
[6877] Fix Prayer of Mending. Use original caster's healing bonus.
Browse files Browse the repository at this point in the history
  • Loading branch information
megamage committed Dec 6, 2008
1 parent cd0b821 commit 1dc7b8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/SpellEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "6876"
#define REVISION_NR "6877"
#endif // __REVISION_NR_H__

0 comments on commit 1dc7b8b

Please sign in to comment.