From 8263c9db5028ed91941d5ed62a2a18fc46411eb0 Mon Sep 17 00:00:00 2001 From: Phoenix404 <41524861+Phoenix4O4@users.noreply.github.com> Date: Wed, 11 Dec 2024 15:43:33 +0300 Subject: [PATCH] back to place --- code/modules/mob/living/carbon/examine.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/mob/living/carbon/examine.dm b/code/modules/mob/living/carbon/examine.dm index 9e1c42db7eefe..efd40334a98d1 100644 --- a/code/modules/mob/living/carbon/examine.dm +++ b/code/modules/mob/living/carbon/examine.dm @@ -446,6 +446,9 @@ . += span_warning("[t_His] eyes are glowing with an unnatural red aura!") else if(HAS_TRAIT(src, TRAIT_BLOODSHOT_EYES)) . += span_warning("[t_His] eyes are bloodshot!") + //ears + if(ears && !(obscured & ITEM_SLOT_EARS) && !(ears.item_flags & EXAMINE_SKIP)) + . += "[t_He] [t_has] [ears.examine_title_worn(user)] on [t_his] ears." // BUBBER EDIT END // Yes there's a lot of copypasta here, we can improve this later when carbons are less dumb in general