From 0eb90e3a5ae011fd66fa45a44111775af4b8eb18 Mon Sep 17 00:00:00 2001 From: Jerry Wester Date: Sat, 7 Jan 2023 07:47:42 -0700 Subject: [PATCH] fix sensitive springlock --- code/modules/mod/modules/modules_maint.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mod/modules/modules_maint.dm b/code/modules/mod/modules/modules_maint.dm index f73969d625..65a5be5dc6 100644 --- a/code/modules/mod/modules/modules_maint.dm +++ b/code/modules/mod/modules/modules_maint.dm @@ -29,7 +29,7 @@ if(!reagents.len) return - if(!(methods & (VAPOR|PATCH|TOUCH))) + if(!(methods == VAPOR || methods == PATCH || methods == TOUCH)) return //remove non-touch reagent exposure to_chat(mod.wearer, span_danger("[src] makes an ominous click sound...")) playsound(src, 'sound/items/modsuit/springlock.ogg', 75, TRUE)