summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/map/status.c2
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);
}