From cc69f94c402c00309f788c3ec0329e677fa9121f Mon Sep 17 00:00:00 2001 From: QAston Date: Mon, 2 Feb 2009 20:11:21 +0100 Subject: *Fix spell 53590 and it's other ranks. --HG-- branch : trunk --- src/game/Unit.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/game/Unit.cpp') diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index b4b25bc2e03..374cdbb42e3 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -8289,7 +8289,6 @@ uint32 Unit::SpellCriticalHealingBonus(SpellEntry const *spellProto, uint32 dama break; } - crit_bonus = int32(crit_bonus * GetTotalAuraMultiplier(SPELL_AURA_MOD_CRITICAL_HEALING_BONUS)); if(pVictim) { @@ -8300,6 +8299,8 @@ uint32 Unit::SpellCriticalHealingBonus(SpellEntry const *spellProto, uint32 dama if(crit_bonus > 0) damage += crit_bonus; + damage = int32(damage * GetTotalAuraMultiplier(SPELL_AURA_MOD_CRITICAL_HEALING_AMOUNT)); + return damage; } -- cgit v1.2.3