From 47e002380ca2d585bda321e0e68b6694856c9eac Mon Sep 17 00:00:00 2001 From: GDN <96800819+GDNgit@users.noreply.github.com> Date: Tue, 21 Feb 2023 15:02:29 -0600 Subject: [PATCH] fixes a cryocell runtime (#20442) --- .../atmospherics/machinery/components/unary_devices/cryo.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm index 605990300e0..87c44e13035 100644 --- a/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm +++ b/code/modules/atmospherics/machinery/components/unary_devices/cryo.dm @@ -332,8 +332,9 @@ return ..() /obj/machinery/atmospherics/unary/cryo_cell/crowbar_act(mob/user, obj/item/I) - if(default_deconstruction_crowbar(user, I)) - return + . = TRUE + if(panel_open) + default_deconstruction_crowbar(user, I) /obj/machinery/atmospherics/unary/cryo_cell/screwdriver_act(mob/user, obj/item/I) if(occupant || on)