From ef8a9dd5e0d771de17dcb6ebd337ea02d0826c4f Mon Sep 17 00:00:00 2001 From: Neerti Date: Sat, 16 Jul 2016 23:26:23 -0400 Subject: [PATCH] Teshari Now Have Upper Bodies Fixes a long standing bug. Turns out BP_CHEST is undefined and the compiler never caught it for some reason. --- code/modules/mob/living/carbon/human/species/station/seromi.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm index d6744f252e..93dfcb6244 100644 --- a/code/modules/mob/living/carbon/human/species/station/seromi.dm +++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm @@ -57,7 +57,7 @@ cold_discomfort_level = 180 has_limbs = list( - BP_CHEST = list("path" = /obj/item/organ/external/chest), + BP_TORSO = list("path" = /obj/item/organ/external/chest), BP_GROIN = list("path" = /obj/item/organ/external/groin), BP_HEAD = list("path" = /obj/item/organ/external/head/seromi), BP_L_ARM = list("path" = /obj/item/organ/external/arm),