From a30674b53e23e04432832c820288e2460c84c984 Mon Sep 17 00:00:00 2001 From: Jaraci <57604458+Jaraci@users.noreply.github.com> Date: Sat, 11 Jun 2022 22:27:00 +0100 Subject: [PATCH] Removes human slowdown at higher hunger + thirst levels (#14075) --- .../mob/living/carbon/human/human_movement.dm | 10 ---------- html/changelogs/omicega-fdsfidsofidosfgmidogfdg.yml | 12 ++++++++++++ 2 files changed, 12 insertions(+), 10 deletions(-) create mode 100644 html/changelogs/omicega-fdsfidsofidosfgmidogfdg.yml diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 3b0bff6ee79..2fd18e142bf 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -26,16 +26,6 @@ if(species) tally += species.get_species_tally(src) - if (nutrition < (max_nutrition * 0.2)) - tally++ - if (nutrition < (max_nutrition * 0.1)) - tally++ - - if (hydration < (max_hydration * 0.2)) - tally++ - if (hydration < (max_hydration * 0.1)) - tally++ - tally += species.handle_movement_tally(src) if (can_feel_pain()) diff --git a/html/changelogs/omicega-fdsfidsofidosfgmidogfdg.yml b/html/changelogs/omicega-fdsfidsofidosfgmidogfdg.yml new file mode 100644 index 00000000000..e7bd5dd9f05 --- /dev/null +++ b/html/changelogs/omicega-fdsfidsofidosfgmidogfdg.yml @@ -0,0 +1,12 @@ +author: Omicega + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Removed playable species' slowdown at higher hunger and thirst levels."