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)