Merge remote-tracking branch 'upstream/master' into dev-freeze

This commit is contained in:
PsiOmega
2015-03-10 07:58:25 +01:00
3 changed files with 13 additions and 2 deletions

View File

@@ -24,6 +24,11 @@
..() ..()
initialize_directions = dir initialize_directions = dir
/obj/machinery/atmospherics/unary/cryo_cell/Del()
if(occupant)
occupant.loc = loc
..()
/obj/machinery/atmospherics/unary/cryo_cell/initialize() /obj/machinery/atmospherics/unary/cryo_cell/initialize()
if(node) return if(node) return
var/node_connect = dir 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() /obj/machinery/cryopod/initialize()
..() ..()

View File

@@ -239,7 +239,7 @@
if (!(status_flags & CANPUSH)) if (!(status_flags & CANPUSH))
return return
var/obj/item/weapon/grab/G = new /obj/item/weapon/grab( M, M, src ) var/obj/item/weapon/grab/G = new /obj/item/weapon/grab(M, src)
M.put_in_active_hand(G) M.put_in_active_hand(G)
@@ -375,4 +375,4 @@
/mob/living/simple_animal/put_in_hands(var/obj/item/W) // No hands. /mob/living/simple_animal/put_in_hands(var/obj/item/W) // No hands.
W.loc = get_turf(src) W.loc = get_turf(src)
return 1 return 1