From 2599bca054866bebab2a95814d329522d117b104 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 22 Sep 2017 18:58:22 -0500 Subject: [PATCH] [MIRROR] Taking the beaker out of a cryotube now tries to put it into your hand (#2904) * Taking the beaker out of a cryotube now tries to put it into your hand (#30938) * Taking the beaker out of a cryotube now tries to put it into your hand * this is better * THIS is better * Fixes potential bugs * Update cryo.dm * Taking the beaker out of a cryotube now tries to put it into your hand --- .../atmospherics/machinery/components/unary_devices/cryo.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm index 4583680d13..96bd0e8f65 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -378,6 +378,8 @@ if("ejectbeaker") if(beaker) beaker.forceMove(loc) + if(Adjacent(usr) && !issilicon(usr)) + usr.put_in_hands(beaker) beaker = null . = TRUE update_icon()