From 41453178713fbccbe266e76ec3fffba712ff14fa Mon Sep 17 00:00:00 2001 From: AlbertNanotracen <155601848+AlbertNanotracen@users.noreply.github.com> Date: Mon, 18 Mar 2024 21:59:06 -0300 Subject: [PATCH] Examining a person gives you their species (#1438) * Freerunning quirk fixes * Fix for #1330 * fix for #1263 * adds open state icons for nanite programmer and nanite program hub * reopening develop branch * examine gives the mobs species --- code/modules/mob/living/carbon/human/examine.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 8ea15e6f1628..abdc8f1dc400 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -22,6 +22,10 @@ if(obscure_examine) return list("You're struggling to make out any details...") + //Monkestation Addition: Species + if(dna?.species?.name) + . += "[t_He] [t_is] \a [dna.species.name]."//name should be what others see you as imo, id should be used for your true species (for species that disguise) + var/obscured = check_obscured_slots() //uniform