Skip to content

Commit

Permalink
fix zone check in head bone surgery step
Browse files Browse the repository at this point in the history
Co-authored-by: goliath <[email protected]>
  • Loading branch information
intercepti0n and kreeperHLC authored Oct 27, 2023
1 parent f51b001 commit 2a3bf74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/surgery/steps/bone.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2a3bf74

Please sign in to comment.