Granularizes height comparison thresholds (#16311)

* the pr

* shorten changelog filename

* correct changelog filename
This commit is contained in:
Sniblet
2023-05-11 16:23:08 +00:00
committed by GitHub
parent c87833cc5d
commit c3f9726be7
2 changed files with 24 additions and 4 deletions
@@ -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