From 4e3845da5ecc2b9864e7e30aa580961fdcbed741 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Sun, 12 Apr 2020 09:53:41 +0200 Subject: [PATCH] Clarifies the scope of the slowdown. --- code/controllers/configuration/entries/game_options.dm | 4 ++-- config/game_options.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/controllers/configuration/entries/game_options.dm b/code/controllers/configuration/entries/game_options.dm index 8fe47e72ce..f11093cba7 100644 --- a/code/controllers/configuration/entries/game_options.dm +++ b/code/controllers/configuration/entries/game_options.dm @@ -460,8 +460,8 @@ config_entry_value = RESIZE_DEFAULT_SIZE min_val = RESIZE_DEFAULT_SIZE -//Pun-Pun movement slowdown for characters with a body size smaller than this value, -//Which kinda makes sense considering their strides should be shorters. +//Pun-Pun movement slowdown given to characters with a body size smaller than this value, +//to compensate for their smaller hitbox. //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 diff --git a/config/game_options.txt b/config/game_options.txt index 241afa7aa0..8c48ac6ede 100644 --- a/config/game_options.txt +++ b/config/game_options.txt @@ -625,8 +625,8 @@ PENIS_MAX_INCHES_PREFS 20 BODY_SIZE_MIN 1 BODY_SIZE_MAX 1 -## Pun-Pun movement slowdown for characters with a body size smaller than this value, -## Which kinda makes sense considering their strides should be shorters. +## Pun-Pun movement slowdown given to characters with a body size smaller than this value, +## to compensate for their smaller hitbox. ## To disable, just make sure the value is lower than 'body_size_min' THRESHOLD_BODY_SIZE_SLOWDOWN 0.85