diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-11 04:46:36 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-02-11 04:46:36 +0000 |
commit | 4c29f5aeb5b12377d6f6d6161beb1b85515fbace (patch) | |
tree | ad8ead5446f73ac6a00a851ed4905eefe2dda0a3 /src/map/status.c | |
parent | 7d9d9d6baac2793fb1264074d03eb7bcde89e120 (diff) | |
download | hercules-4c29f5aeb5b12377d6f6d6161beb1b85515fbace.tar.gz hercules-4c29f5aeb5b12377d6f6d6161beb1b85515fbace.tar.bz2 hercules-4c29f5aeb5b12377d6f6d6161beb1b85515fbace.tar.xz hercules-4c29f5aeb5b12377d6f6d6161beb1b85515fbace.zip |
- The status window now shows the addition of the damage of your both weapons when dual wielding.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5256 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/status.c b/src/map/status.c index 3eb09a6ba..b4abbd74a 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -861,9 +861,9 @@ int status_calc_pc(struct map_session_data* sd,int first) b_hit = sd->hit;
b_flee = sd->flee;
b_aspd = sd->aspd;
- b_watk = sd->right_weapon.watk;
+ b_watk = sd->right_weapon.watk + sd->left_weapon.watk;
b_def = sd->def;
- b_watk2 = sd->right_weapon.watk2;
+ b_watk2 = sd->right_weapon.watk2 + sd->left_weapon.watk2;
b_def2 = sd->def2;
b_flee2 = sd->flee2;
b_critical = sd->critical;
@@ -1886,11 +1886,11 @@ int status_calc_pc(struct map_session_data* sd,int first) clif_updatestatus(sd,SP_FLEE1);
if(b_aspd != sd->aspd)
clif_updatestatus(sd,SP_ASPD);
- if(b_watk != sd->right_weapon.watk || b_base_atk != sd->base_atk)
+ if(b_watk != sd->right_weapon.watk + sd->left_weapon.watk || b_base_atk != sd->base_atk)
clif_updatestatus(sd,SP_ATK1);
if(b_def != sd->def)
clif_updatestatus(sd,SP_DEF1);
- if(b_watk2 != sd->right_weapon.watk2)
+ if(b_watk2 != sd->right_weapon.watk2 + sd->left_weapon.watk2)
clif_updatestatus(sd,SP_ATK2);
if(b_def2 != sd->def2)
clif_updatestatus(sd,SP_DEF2);
|