From fcb8c63d2a40e8cde8e1d5fcf787a4b1ee52f520 Mon Sep 17 00:00:00 2001 From: HarpyEagle Date: Tue, 24 May 2016 11:44:00 -0400 Subject: [PATCH] Fixes organs listed under organ tag instead of organ name when using undislocate verb --- code/modules/mob/living/carbon/human/human.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 01614964e39..e884dbcd5d1 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -1325,7 +1325,7 @@ for(var/limb in organs_by_name) var/obj/item/organ/external/current_limb = organs_by_name[limb] if(current_limb && current_limb.dislocated > 0 && !current_limb.is_parent_dislocated()) //if the parent is also dislocated you will have to relocate that first - limbs |= limb + limbs |= current_limb var/choice = input(usr,"Which joint do you wish to relocate?") as null|anything in limbs if(!choice)