From bcbd358d4f57a7f51cb80dd829db6576824939ab Mon Sep 17 00:00:00 2001 From: ai4rei Date: Sun, 29 May 2011 12:09:02 +0000 Subject: * Fixed bonus 'bHPDrainValue' on left hand would work as right hand bonus, when specified with 'bonus' rather than 'bonus2' (bugreport:4939, since r6221). git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14834 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 2 ++ src/map/pc.c | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 7add7b6da..3eca9764d 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -1,5 +1,7 @@ Date Added +2011/05/29 + * Fixed bonus 'bHPDrainValue' on left hand would work as right hand bonus, when specified with 'bonus' rather than 'bonus2' (bugreport:4939, since r6221). [Ai4rei] 2011/05/23 * Changed enumerating defines into enumerations (related topic:264007). [Ai4rei] - Minor fixups on few macros. diff --git a/src/map/pc.c b/src/map/pc.c index b134c005f..cb6405b22 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2321,8 +2321,8 @@ int pc_bonus(struct map_session_data *sd,int type,int val) sd->right_weapon.hp_drain[RC_BOSS].value += val; } else if(sd->state.lr_flag == 1) { - sd->right_weapon.hp_drain[RC_NONBOSS].value += val; - sd->right_weapon.hp_drain[RC_BOSS].value += val; + sd->left_weapon.hp_drain[RC_NONBOSS].value += val; + sd->left_weapon.hp_drain[RC_BOSS].value += val; } break; case SP_SP_DRAIN_VALUE: -- cgit v1.2.3-60-g2f50