From d7bec474efd7ecc6d3a95fbdf57a9848ebeed4e8 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 28 Jul 2023 02:00:08 +0200 Subject: [PATCH] [MIRROR] Removes the stealth-added ability to screwdriver springlock modules to make them not deadly because that defeats the point of the springlock module [MDB IGNORE] (#22733) * Removes the stealth-added ability to screwdriver springlock modules to make them not deadly because that defeats the point of the springlock module (#77144) >we add a feature with an intentional downside >someone makes the downside bypassable entirely as "quality of life" i hate balance posters :cl: fix: Removes the ability to screwdriver springlock modules to make them not deadly because that defeats the point of the springlock module /:cl: * Removes the stealth-added ability to screwdriver springlock modules to make them not deadly because that defeats the point of the springlock module --------- Co-authored-by: Iamgoofball --- code/modules/mod/modules/modules_maint.dm | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/code/modules/mod/modules/modules_maint.dm b/code/modules/mod/modules/modules_maint.dm index 229645e10c5..f7b53eaa9f0 100644 --- a/code/modules/mod/modules/modules_maint.dm +++ b/code/modules/mod/modules/modules_maint.dm @@ -10,11 +10,6 @@ icon_state = "springlock" complexity = 3 // it is inside every part of your suit, so incompatible_modules = list(/obj/item/mod/module/springlock) - var/death_trap = TRUE - -/obj/item/mod/module/springlock/screwdriver_act(mob/living/user, obj/item/tool) - . = ..() - death_trap = !death_trap /obj/item/mod/module/springlock/on_install() mod.activation_step_time *= 0.5 @@ -42,11 +37,7 @@ ///Signal fired when wearer attempts to activate/deactivate suits /obj/item/mod/module/springlock/proc/on_activate_spring_block(datum/source, user) SIGNAL_HANDLER - - if(death_trap) - balloon_alert(user, "springlocks aren't responding...?") - else - balloon_alert(user, "you disable it just in time") + balloon_alert(user, "springlocks aren't responding...?") return MOD_CANCEL_ACTIVATE ///Delayed death proc of the suit after the wearer is exposed to reagents