From 98049925a6805f8bdb9008bd006fcb1ed5eeffe3 Mon Sep 17 00:00:00 2001 From: megamage Date: Mon, 25 May 2009 10:39:50 -0500 Subject: *Fix a typo that makes seal of vengeance/blood deal huge damage. --HG-- branch : trunk --- src/game/Unit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp index 3835e822362..21f34d49ac3 100644 --- a/src/game/Unit.cpp +++ b/src/game/Unit.cpp @@ -8880,7 +8880,7 @@ uint32 Unit::SpellDamageBonus(Unit *pVictim, SpellEntry const *spellProto, uint3 } // + 10% for each application of Holy Vengeance/Blood Corruption on the target if(stacks) - DoneTotalMod *= stacks * 10 + 100.0f /100.0f; + DoneTotalMod *= (1.0f + (float)stacks / 10.0f) ; } // Ice Lance -- cgit v1.2.3