summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c
index b1c86cc67..2a09b47d9 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -11475,7 +11475,7 @@ int status_get_weapon_atk(struct block_list *bl, struct weapon_atk *watk, int fl
&& (refine = sd->status.inventory[index].refine) < 16 && refine ) {
int r = status->refine_info[watk->wlv].randombonus_max[refine + (4 - watk->wlv)] / 100;
if ( r )
- max += (rnd() % 100) % (r / 10) + 1;
+ max += (rnd() % 100) % r + 1;
}
}
@@ -11567,7 +11567,7 @@ void status_get_matk_sub(struct block_list *bl, int flag, unsigned short *matk_m
&& (refine = sd->status.inventory[index].refine) < 16 && refine ) {
int r = status->refine_info[sd->inventory_data[index]->wlv].randombonus_max[refine + (4 - sd->inventory_data[index]->wlv)] / 100;
if ( r )
- st->matk_max += (rnd() % 100) % (r / 10) + 1;
+ st->matk_max += (rnd() % 100) % r + 1;
}
}
#endif