Skip to content

Commit

Permalink
Update examine.dm (#22764)
Browse files Browse the repository at this point in the history
  • Loading branch information
ynot01 authored Oct 25, 2024
1 parent 9f36488 commit dba10a8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/modules/mob/living/carbon/human/examine.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dba10a8

Please sign in to comment.