diff options
Diffstat (limited to 'src/map/charcommand.c')
-rw-r--r-- | src/map/charcommand.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/map/charcommand.c b/src/map/charcommand.c index cee5f995e..008c01a5d 100644 --- a/src/map/charcommand.c +++ b/src/map/charcommand.c @@ -1950,16 +1950,7 @@ int charcommand_speed(const int fd, struct map_session_data* sd, const char* com return -1; } - if (speed < MIN_WALK_SPEED) - { - speed = MIN_WALK_SPEED; - } - else if (speed > MAX_WALK_SPEED) - { - speed = MAX_WALK_SPEED; - } - - pl_sd->base_status.speed = speed; + pl_sd->base_status.speed = cap_value(speed, MIN_WALK_SPEED, MAX_WALK_SPEED); status_calc_bl(&pl_sd->bl, SCB_SPEED); clif_displaymessage(pl_sd->fd, msg_txt(8)); // Speed changed. if (pl_sd->fd != fd) |