From a7568f73b4fe7e6c0d9ca1131b321e54f7aa2c60 Mon Sep 17 00:00:00 2001 From: JimKil3 <47290811+JimKil3@users.noreply.github.com> Date: Mon, 30 Oct 2023 12:45:25 -0400 Subject: [PATCH] Fixes slime people physique not showing (#23083) * damn you octus! * Update code/modules/mob/living/carbon/human/human_examine.dm Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> * fixes contras suggestion --------- Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --- code/modules/mob/living/carbon/human/human_examine.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_examine.dm b/code/modules/mob/living/carbon/human/human_examine.dm index 645bf2164a3..e6ff0fde85b 100644 --- a/code/modules/mob/living/carbon/human/human_examine.dm +++ b/code/modules/mob/living/carbon/human/human_examine.dm @@ -54,10 +54,11 @@ break if(skip_jumpsuit && skip_face || HAS_TRAIT(src, TRAIT_NOEXAMINE)) //either obscured or on the nospecies list msg += "!" //omit the species when examining - else if(displayed_species == "Slime People") //snowflakey because Slime People are defined as a plural - msg += ", a slime person!" else - msg += ", \a [height] [lowertext(displayed_species)] with \a [physique] physique!" //Look I know it uses physique twice, lets not think about it too much ok? + var/species_name = lowertext(displayed_species) + if(displayed_species == "Slime People") //snowflakey because Slime People are defined as a plural + species_name = "slime person" + msg += ", \a [height] [species_name] with \a [physique] physique!" return msg /mob/living/carbon/human/examine_start_damage_block(skip_gloves = FALSE, skip_suit_storage = FALSE, skip_jumpsuit = FALSE, skip_shoes = FALSE, skip_mask = FALSE, skip_ears = FALSE, skip_eyes = FALSE, skip_face = FALSE)