fixc all the things.

This commit is contained in:
Aurorablade
2016-02-23 02:48:13 -05:00
parent 64d8354ec5
commit bbac4006b5
8 changed files with 59 additions and 5 deletions
@@ -19,7 +19,6 @@
if(key) //If there is a mob connected to this thing. Have to check key twice to avoid false death reporting.
if(stat!=DEAD) //If not dead.
death(1) //Brains can die again. AND THEY SHOULD AHA HA HA HA HA HA
world << "Brain.dm"
ghostize() //Ghostize checks for key so nothing else is necessary.
return ..()
@@ -63,7 +63,7 @@
if(health >= config.health_threshold_crit)
if(src.surgeries.len)
for(var/datum/surgery/S in src.surgeries)
if(istype(S.get_surgery_step(), /datum/surgery_step/cavity/place_item))
if(istype(S.get_surgery_step(), /datum/surgery_step/cavity/place_item) || istype(S.get_surgery_step(),/datum/surgery_step/remove_object))
if(S.next_step(M, src))
return 1
else