From 9978bcbec6b9d849ce792a45100041f5299a9b90 Mon Sep 17 00:00:00 2001 From: monster860 Date: Sun, 29 May 2016 11:52:57 -0400 Subject: [PATCH] Fix some IPC surgeries not working --- code/modules/surgery/implant.dm | 2 -- code/modules/surgery/limb_reattach.dm | 1 - 2 files changed, 3 deletions(-) diff --git a/code/modules/surgery/implant.dm b/code/modules/surgery/implant.dm index 82cda80e494..88b2f42416c 100644 --- a/code/modules/surgery/implant.dm +++ b/code/modules/surgery/implant.dm @@ -23,7 +23,6 @@ name = "robotic cavity implant" steps = list(/datum/surgery_step/robotics/external/unscrew_hatch,/datum/surgery_step/robotics/external/open_hatch,/datum/surgery_step/cavity/place_item,/datum/surgery_step/robotics/external/close_hatch) possible_locs = list("chest","head","groin") - allowed_mob = list(/mob/living/carbon/human/machine) /datum/surgery/cavity_implant/can_start(mob/user, mob/living/carbon/target) if(target.get_species() == "Machine") @@ -231,7 +230,6 @@ name = "implant removal" steps = list(/datum/surgery_step/robotics/external/unscrew_hatch,/datum/surgery_step/robotics/external/open_hatch,/datum/surgery_step/cavity/implant_removal,/datum/surgery_step/robotics/external/close_hatch) possible_locs = list("chest")//head is for borers..i can put it elsewhere - allowed_mob = list(/mob/living/carbon/human/machine) /datum/surgery/cavity_implant_rem/can_start(mob/user, mob/living/carbon/target) if(target.get_species() == "Machine") diff --git a/code/modules/surgery/limb_reattach.dm b/code/modules/surgery/limb_reattach.dm index 90f2d9afed0..8c0d20224e9 100644 --- a/code/modules/surgery/limb_reattach.dm +++ b/code/modules/surgery/limb_reattach.dm @@ -40,7 +40,6 @@ name = "limb attachment" steps = list(/datum/surgery_step/limb/attach) possible_locs = list("head","l_arm", "l_hand","r_arm","r_hand","r_leg","r_foot","l_leg","l_foot","groin") - allowed_mob = list(/mob/living/carbon/human/machine) /datum/surgery/reattach_synth/can_start(mob/user, mob/living/carbon/target) if(ishuman(target))