From 2a3bf746eea81247e68a192ae463d3eff0034388 Mon Sep 17 00:00:00 2001 From: Interception&? <137328283+intercepti0n@users.noreply.github.com> Date: Fri, 27 Oct 2023 14:28:46 +0300 Subject: [PATCH] fix zone check in head bone surgery step Co-authored-by: goliath --- code/datums/surgery/steps/bone.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/surgery/steps/bone.dm b/code/datums/surgery/steps/bone.dm index 4be420e3cea..ba8dadfc296 100644 --- a/code/datums/surgery/steps/bone.dm +++ b/code/datums/surgery/steps/bone.dm @@ -63,7 +63,7 @@ ) /datum/surgery_step/bone/mend_bone/check_zone(mob/living/carbon/human/target, target_zone) - return (..() && target_zone == BP_HEAD) + return (..() && target_zone != BP_HEAD) /datum/surgery_step/bone/mend_bone/check_parent_organ(obj/item/organ/external/parent_organ, mob/living/carbon/human/target, obj/item/tool, atom/user) return (..() && parent_organ.stage == 1)