From df8a6eb23160f5955e33def5047afc83ab90d63e Mon Sep 17 00:00:00 2001 From: cib Date: Fri, 24 Feb 2012 06:20:25 -0800 Subject: [PATCH] Bug fix #479: Examine now shows head and eye wear. --- code/modules/mob/living/carbon/human/examine.dm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 3d04f998c9e..052c05470dd 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -42,6 +42,14 @@ else usr << "\blue [src.name] has a \icon[src.wear_mask] [src.wear_mask.name] on [t_his] face." + if (src.head) + usr << "\red [src.name] is wearing a[src.head.blood_DNA.len ? " bloody " : " "] \icon[src.head] [src.head.name] on [t_his] head!" + + if (src.glasses) + usr << "\red [src.name] is wearing a pair of [src.glasses.blood_DNA.len ? " bloody " : " "] \icon[src.glasses] [src.glasses.name]!" + + + if (src.l_hand) if (src.l_hand.blood_DNA.len) usr << "\red [src.name] has a[src.l_hand.blood_DNA.len ? " bloody " : " "] \icon[src.l_hand] [src.l_hand.name] in [t_his] left hand!"