From bdc6551ea5f86f85c5edeb1b6ae388b1b01a3427 Mon Sep 17 00:00:00 2001 From: skotlex Date: Tue, 30 May 2006 12:31:58 +0000 Subject: - Fixed battle_calc_weapon_attack damage capping damage to a minimum of 0 (negative values should be allowed when attack is absorbed by target's element) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6840 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/battle.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/map/battle.c') diff --git a/src/map/battle.c b/src/map/battle.c index 1770e3df9..f655c4619 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -1888,12 +1888,6 @@ static struct Damage battle_calc_weapon_attack( } } } - - if(!flag.rh || wd.damage<1) - wd.damage=0; - - if(!flag.lh || wd.damage2<1) - wd.damage2=0; if (sd) { @@ -1926,6 +1920,12 @@ static struct Damage battle_calc_weapon_attack( flag.lh = 1; } } + + if(!flag.rh && wd.damage) + wd.damage=0; + + if(!flag.lh && wd.damage2) + wd.damage2=0; if(wd.damage > 0 || wd.damage2 > 0) { -- cgit v1.2.3-70-g09d2