From d5f6b74ff6e837a091d0df429d06a893600d6ceb Mon Sep 17 00:00:00 2001 From: "n3ophyt3@gmail.com" Date: Tue, 14 Dec 2010 05:07:27 +0000 Subject: [PATCH] Examining someone will now show what they have in their suit storage. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@608 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/mob/living/carbon/human/examine.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 0794f692250..1f94b5b67a3 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -56,6 +56,11 @@ usr << "\red [src.name] has a[src.belt.blood_DNA ? " bloody " : " "] \icon[src.belt] [src.belt.name] on [t_his] belt!" else usr << "\blue [src.name] has a \icon[src.belt] [src.belt.name] on [t_his] belt." + if(src.s_store) + if(src.s_store.blood_DNA) + usr << "\red [src.name] has a[src.s_store.blood_DNA ? " bloody " : " "] \icon[src.s_store] [src.s_store.name] on [t_his][src.wear_suit.blood_DNA ? " bloody " : " "] \icon[src.wear_suit] [src.wear_suit.name]!" + else + usr << "\blue [src.name] has a \icon[src.s_store] [src.s_store.name] on [t_his][src.wear_suit.blood_DNA ? " bloody " : " "] \icon[src.wear_suit] [src.wear_suit.name]." if (src.shoes) usr << "[src.shoes.blood_DNA ? "\red" : "\blue"] [src.name] has a[src.shoes.blood_DNA ? " bloody " : " "] \icon[src.shoes] [src.shoes.name] on [t_his] feet."