From dba10a8e4161cbb6202e59901259b15a39297c9c Mon Sep 17 00:00:00 2001 From: ynot01 Date: Fri, 25 Oct 2024 12:56:59 -0400 Subject: [PATCH] Update examine.dm (#22764) --- code/modules/mob/living/carbon/human/examine.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 80ed8b29df9c..e19ac19e5a5f 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -73,8 +73,10 @@ . += "[t_He] [t_has] [gloves.get_examine_string(user)] on [t_his] hands." else if(FR && length(FR.blood_DNA)) var/hand_number = get_num_arms(FALSE) - if(hand_number) - . += span_warning("[t_He] [t_has] [hand_number > 1 ? "" : "a"] blood-stained hand[hand_number > 1 ? "s" : ""]!") + if(hand_number && blood_in_hands) + . += span_warning("[t_He] [t_has][hand_number > 1 ? "" : " a"] blood-stained hand[hand_number > 1 ? "s" : ""]!") + else + . += span_warning("[t_He] [t_is] covered in blood!") //handcuffed? if(handcuffed)