Cryopods/cells that contains mobs will now drop them to the ground on deletion.
This commit is contained in:
PsiOmega
2015-03-08 13:22:45 +01:00
parent 44e280dbe4
commit d290ee4c68
2 changed files with 11 additions and 0 deletions

View File

@@ -24,6 +24,11 @@
..()
initialize_directions = dir
/obj/machinery/atmospherics/unary/cryo_cell/Del()
if(occupant)
occupant.loc = loc
..()
/obj/machinery/atmospherics/unary/cryo_cell/initialize()
if(node) return
var/node_connect = dir

View File

@@ -234,6 +234,12 @@
..()
/obj/machinery/cryopod/Del()
if(occupant)
occupant.loc = loc
occupant.resting = 1
..()
/obj/machinery/cryopod/initialize()
..()