diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 7c8a85351..93f717e95 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -6691,7 +6691,7 @@ void Aura::PeriodicTick() uint32 absorbHeal = 0; pCaster->CalculateHealAbsorb(heal, &absorbHeal); - int32 gain = pCaster->DealHeal(pCaster, heal, spellProto, false, absorbHeal); + int32 gain = pCaster->DealHeal(pCaster, heal - absorbHeal, spellProto, false, absorbHeal); pCaster->getHostileRefManager().threatAssist(pCaster, gain * 0.5f, spellProto); break; } diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index f247d34e1..c31336f63 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -3333,7 +3333,7 @@ void Spell::EffectHealMechanical(SpellEffectIndex /*eff_idx*/) uint32 absorb = 0; unitTarget->CalculateHealAbsorb(addhealth, &absorb); - caster->DealHeal(unitTarget, addhealth, m_spellInfo, false, absorb); + caster->DealHeal(unitTarget, addhealth - absorb, m_spellInfo, false, absorb); } } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index f9705f5e1..fb1391327 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 "10476" + #define REVISION_NR "10477" #endif // __REVISION_NR_H__