From 1afa07dad5670dd37ad6c7f527c5063280c30b63 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sun, 12 Apr 2020 09:40:38 +0200 Subject: [PATCH] Improved readability. --- code/controllers/configuration/entries/game_options.dm | 7 ++++--- config/game_options.txt | 5 +++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm index c3d0d2e3e7..8fe47e72ce 100644 --- a/code/controllers/configuration/entries/game_options.dm +++ b/code/controllers/configuration/entries/game_options.dm @@ -460,8 +460,9 @@ config_entry_value = RESIZE_DEFAULT_SIZE min_val = RESIZE_DEFAULT_SIZE -//pun pun slowdown for characters smaller than this thanks shorter strides. -//Set to a value below 'body_size_min' to disable it. +//Pun-Pun movement slowdown for characters with a body size smaller than this value, +//Which kinda makes sense considering their strides should be shorters. +//To disable, just make sure the value is lower than 'body_size_min' /datum/config_entry/number/threshold_body_size_slowdown config_entry_value = RESIZE_DEFAULT_SIZE * 0.85 min_val = 0 @@ -471,4 +472,4 @@ //doesn't apply to floating or crawling mobs /datum/config_entry/number/body_size_slowdown_multiplier config_entry_value = 0.25 - min_val = 1.1 //otherwise it'd be a waste of time. + min_val = 0.1 //To encourage folks to disable the slowdown through the above config instead. diff --git a/config/game_options.txt b/config/game_options.txt index dd49446ecc..241afa7aa0 100644 --- a/config/game_options.txt +++ b/config/game_options.txt @@ -625,8 +625,9 @@ PENIS_MAX_INCHES_PREFS 20 BODY_SIZE_MIN 1 BODY_SIZE_MAX 1 -## Pun-Pun slowdown for characters smaller than this thanks shorter strides. -## Set to a value below BODY_SIZE_MIN to disable it. +## Pun-Pun movement slowdown for characters with a body size smaller than this value, +## Which kinda makes sense considering their strides should be shorters. +## To disable, just make sure the value is lower than 'body_size_min' THRESHOLD_BODY_SIZE_SLOWDOWN 0.85 ## Multiplier used in the smaller strides slowdown calculation.