From 604e26d39965d4477fa255f3739319652e6351c6 Mon Sep 17 00:00:00 2001 From: Adrer Date: Mon, 22 Mar 2021 12:34:48 +0100 Subject: [PATCH] Moved mode check in welder act up (#15746) Co-authored-by: Erwin Boot --- code/modules/recycling/disposal.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 945c9744324..adb27fccc82 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -164,9 +164,9 @@ to_chat(user, "You [mode ? "unfasten": "fasten"] the screws around the power connection.") /obj/machinery/disposal/welder_act(mob/user, obj/item/I) - . = TRUE if(mode != required_mode_to_deconstruct) return + . = TRUE if(contents.len > 0) to_chat(user, "Eject the items first!") return