[MIRROR] Fixes synth surgery (#12847)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2026-06-25 11:51:42 -04:00
committed by GitHub
co-authored by Cameron Lennox
parent 482b7b9f7f
commit 269cb3da18
14 changed files with 117 additions and 115 deletions
+3 -3
View File
@@ -11,12 +11,12 @@
/datum/surgery_step/face/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool)
if(!ishuman(target))
return 0
return FALSE
var/obj/item/organ/external/affected = target.get_organ(target_zone)
if (!affected || (affected.robotic >= ORGAN_ROBOT))
return 0
return FALSE
if(coverage_check(user, target, affected, tool))
return 0
return FALSE
return target_zone == O_MOUTH
///////////////////////////////////////////////////////////////