[MIRROR] Fix being able to alt-click and ctrl-click while inside cryo tubes (#4081)

* Fix being able to alt-click and ctrl-click while inside cryo tubes (#57587)

* Fix being able to alt-click and ctrl-click while inside cryo tubes

Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-03-11 17:55:17 +00:00
committed by GitHub
co-authored by Mothblocks
parent a3b5465cb0
commit 55982d7636
@@ -488,6 +488,9 @@ GLOBAL_VAR_INIT(cryo_overlay_cover_off, mutable_appearance('icons/obj/cryogenics
beaker = null
. = TRUE
/obj/machinery/atmospherics/components/unary/cryo_cell/can_interact(mob/user)
return ..() && user.loc != src
/obj/machinery/atmospherics/components/unary/cryo_cell/CtrlClick(mob/user)
if(can_interact(user) && !state_open)
set_on(!on)