diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index a7e66664081..65c698a5510 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -492,14 +492,22 @@ switch(height - examiner.height) if(-999 to -100) descriptor = "absolutely tiny compared to" - if(-99 to -50) + if(-99 to -51) descriptor = "much smaller than" - if(-49 to -11) + if(-50 to -21) + descriptor = "significantly shorter than" + if(-20 to -11) descriptor = "shorter than" - if(-10 to 10) + if(-10 to -6) + descriptor = "slightly shorter than" + if(-5 to 5) descriptor = "around about the same height" - if(11 to 50) + if(6 to 10) + descriptor = "slightly taller than" + if(11 to 20) descriptor = "taller than" + if(21 to 50) + descriptor = "significantly taller than" if(51 to 100) descriptor = "much larger than" else diff --git a/html/changelogs/sniblet-16311.yml b/html/changelogs/sniblet-16311.yml new file mode 100644 index 00000000000..201d5c68a08 --- /dev/null +++ b/html/changelogs/sniblet-16311.yml @@ -0,0 +1,12 @@ +author: Sniblet + +# 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: "Adjusted values for height comparison threshholds, and added more of them: slightly/significantly taller/shorter."