From 3ae2f7736fc5434497389d0fec77606dceab8a18 Mon Sep 17 00:00:00 2001 From: Cyantime Date: Wed, 3 Nov 2021 01:11:30 -0400 Subject: [PATCH] Allows removal of digital t-valves --- code/ATMOSPHERICS/components/tvalve.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/ATMOSPHERICS/components/tvalve.dm b/code/ATMOSPHERICS/components/tvalve.dm index 12c3fbfa13f..acbf9f6ba2d 100644 --- a/code/ATMOSPHERICS/components/tvalve.dm +++ b/code/ATMOSPHERICS/components/tvalve.dm @@ -329,9 +329,6 @@ /obj/machinery/atmospherics/tvalve/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) if (!W.is_wrench()) return ..() - if (istype(src, /obj/machinery/atmospherics/tvalve/digital)) - to_chat(user, "You cannot unwrench \the [src], it's too complicated.") - return 1 if(!can_unwrench()) to_chat(user, "You cannot unwrench \the [src], it too exerted due to internal pressure.") add_fingerprint(user)