From b2e231fbd75dc07cdf7e0e1330922cc734344e29 Mon Sep 17 00:00:00 2001 From: Y0SH1M4S73R Date: Thu, 11 Mar 2021 01:34:47 -0500 Subject: [PATCH] pulsing the open wire toggles airlocks, even when cut (#57562) --- code/datums/wires/airlock.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/wires/airlock.dm b/code/datums/wires/airlock.dm index ce8a7081fbd..a8cdd6948f3 100644 --- a/code/datums/wires/airlock.dm +++ b/code/datums/wires/airlock.dm @@ -96,9 +96,9 @@ return if(!A.requiresID() || A.check_access(null)) if(A.density) - INVOKE_ASYNC(A, /obj/machinery/door/airlock.proc/open) + INVOKE_ASYNC(A, /obj/machinery/door/airlock.proc/open, 1) else - INVOKE_ASYNC(A, /obj/machinery/door/airlock.proc/close) + INVOKE_ASYNC(A, /obj/machinery/door/airlock.proc/close, 1) if(WIRE_BOLTS) // Pulse to toggle bolts (but only raise if power is on). if(!A.locked) A.bolt()