fixed slime surgery

This commit is contained in:
Aurorablade
2016-02-07 00:54:46 -05:00
parent e1899e4af9
commit e5f5b68c92
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -8,9 +8,8 @@
H = M
affecting = H.get_organ(check_zone(selected_zone))
if(can_operate(M)) //if they're prone or a slime
if(can_operate(M) || isslime(M)) //if they're prone or a slime
var/datum/surgery/current_surgery
for(var/datum/surgery/S in M.surgeries)
if(S.location == selected_zone)
current_surgery = S
+1
View File
@@ -5,6 +5,7 @@
name = "core removal"
steps = list(/datum/surgery_step/slime/cut_flesh, /datum/surgery_step/slime/cut_innards, /datum/surgery_step/slime/saw_core)
allowed_mob = list(/mob/living/carbon/slime)
possible_locs = list("chest")//urgghhhhhhhhhhhh
/datum/surgery_step/slime