From 21fb348e92aafc541d79feb578f005a86490e5f2 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Fri, 22 Sep 2017 19:44:28 -0400 Subject: [PATCH] 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 --- .../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 6353cdea456..20a30db5813 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -377,6 +377,8 @@ if("ejectbeaker") if(beaker) beaker.forceMove(loc) + if(Adjacent(usr) && !issilicon(usr)) + usr.put_in_hands(beaker) beaker = null . = TRUE update_icon()