diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c index 2f36cd6f6..d15343d91 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -1786,7 +1786,7 @@ int status_calc_mob_(struct mob_data* md, bool first) status->max_sp += diff*status->int_; status->hp = status->max_hp; status->sp = status->max_sp; - status->speed -= diff; + status->speed -= cap_value(diff, 0, status->speed - 10); } |