diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 329fa1ae18..41ac05b8e2 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1087,16 +1087,23 @@ * # `spec_trait_examine_font()` * * This gets a humanoid's special examine font, which is used to color their species name during examine / health analyzing. + * The first of these that applies is returned. * Returns: - * Metallic font if robotic - * Cyan if a toxinlover - * Green if none of the others apply (aka, generic organic) + * * Metallic font if robotic + * * Cyan if a toxinlover + * * Purple if plasmaperson + * * Rock / Brownish if a golem + * * Green if none of the others apply (aka, generic organic) */ /mob/living/carbon/human/proc/spec_trait_examine_font() if(HAS_TRAIT(src, TRAIT_ROBOTIC_ORGANISM)) return "" if(HAS_TRAIT(src, TRAIT_TOXINLOVER)) return "" + if(isplasmaman(src)) + return ""