diff options
author | QAston <none@none> | 2009-02-25 22:15:14 +0100 |
---|---|---|
committer | QAston <none@none> | 2009-02-25 22:15:14 +0100 |
commit | dea0b1c5a69dad8f3645f2a4f6634f50fdb3ad08 (patch) | |
tree | b5df3a8e4d517ba0faf396a73f6b7523215c8094 /src/game/Unit.cpp | |
parent | e7ca6e811711ac935a2411fb7c670b7b25bd0d85 (diff) |
*Fix Prayer of mending bonus healing.
--HG--
branch : trunk
Diffstat (limited to 'src/game/Unit.cpp')
-rw-r--r-- | src/game/Unit.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index d2f857d4bf6..250e5b5b63f 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -12635,6 +12635,8 @@ bool Unit::HandleMeandingAuraProc( Aura* triggeredByAura ) caster->AddSpellMod(mod, true); CastCustomSpell(target,spellProto->Id,&heal,NULL,NULL,true,NULL,triggeredByAura,caster->GetGUID()); caster->AddSpellMod(mod, false); + + heal = caster->SpellHealingBonus(spellProto, heal, HEAL, this); } } } |