From 7690a91c8fbeca9bafdf24521445f1721a43b882 Mon Sep 17 00:00:00 2001 From: MagmaRam Date: Fri, 31 Mar 2017 23:22:13 -0500 Subject: [PATCH] Splints will now show up on all limbs. --- code/modules/mob/living/carbon/human/examine.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 90f80ed267f..2953591a5a2 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -280,7 +280,7 @@ msg += "[T.He] [T.is] twitching ever so slightly.\n" //splints - for(var/organ in list(BP_L_LEG, BP_R_LEG, BP_L_ARM, BP_R_ARM)) + for(var/organ in BP_ALL) var/obj/item/organ/external/o = get_organ(organ) if(o && o.splinted && o.splinted.loc == o) msg += "[T.He] [T.has] \a [o.splinted] on [T.his] [o.name]!\n"