From 2ae3fdf122c362181b4673beb01ee817281343df Mon Sep 17 00:00:00 2001 From: Chinsky Date: Tue, 19 Feb 2013 17:51:04 +0400 Subject: [PATCH] Fixed derp in surgery step. Forgot they all instanced at init, not on demand. --- code/modules/surgery/other.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/surgery/other.dm b/code/modules/surgery/other.dm index 5d8c98053a4..3c3dd477b40 100644 --- a/code/modules/surgery/other.dm +++ b/code/modules/surgery/other.dm @@ -132,6 +132,8 @@ var/datum/organ/external/affected = target.get_organ(target_zone) if (affected.name in list("chest","groin","head")) max_size = 3 + else + max_size = 2 return affected.open == 2 && !(affected.status & ORGAN_BLEEDING) && tool.w_class <= max_size && !affected.hidden begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool)