From c77869e7bf80ddec31cf48b77148c15d0ccaa48f Mon Sep 17 00:00:00 2001 From: Paradox924X Date: Fri, 19 Feb 2010 12:51:40 +0000 Subject: Fixed racial bonuses for RC_NONDEMIHUMAN applying to right cardfix value (cardfix) instead of left cardfix value (cardfix_) in the case of melee attacks where left_cardfix_to_right is set to 'no'. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14248 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 1 + src/map/battle.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 8d857dff0..864fee82e 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2010/02/19 + * Fixed racial bonuses for RC_NONDEMIHUMAN applying to right cardfix value (cardfix) instead of left cardfix value (cardfix_) in the case of melee attacks where left_cardfix_to_right is set to 'no'. [Paradox924X] * Fixed NPC_INVINCIBLE can be dispelled. (bugreport:4046) [Inkfish] * Fixed a compliation warning. [Inkfish] 2010/02/09 diff --git a/src/map/battle.c b/src/map/battle.c index d5c79eef2..a95e29079 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -1994,7 +1994,7 @@ static struct Damage battle_calc_weapon_attack(struct block_list *src,struct blo cardfix_=cardfix_*(100+sd->left_weapon.addrace2[t_race2])/100; cardfix_=cardfix_*(100+sd->left_weapon.addrace[is_boss(target)?RC_BOSS:RC_NONBOSS])/100; if( tstatus->race != RC_DEMIHUMAN ) - cardfix=cardfix*(100+sd->left_weapon.addrace[RC_NONDEMIHUMAN])/100; + cardfix_=cardfix_*(100+sd->left_weapon.addrace[RC_NONDEMIHUMAN])/100; } } else -- cgit v1.2.3-70-g09d2