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