From 96c75eb5ca1c8987c02fbc9018dabb5d934f0e5d Mon Sep 17 00:00:00 2001 From: r4d6 Date: Fri, 10 Jan 2020 17:01:46 -0500 Subject: [PATCH] Add a message when pulsing the open wire on airlocks --- code/datums/wires/airlock.dm | 2 ++ tgstation.dme | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/datums/wires/airlock.dm b/code/datums/wires/airlock.dm index db6d80f9bb..ac4473845d 100644 --- a/code/datums/wires/airlock.dm +++ b/code/datums/wires/airlock.dm @@ -85,6 +85,8 @@ INVOKE_ASYNC(A, /obj/machinery/door/airlock.proc/open) else INVOKE_ASYNC(A, /obj/machinery/door/airlock.proc/close) + else + holder.visible_message("You hear a a grinding noise coming from the airlock.") if(WIRE_BOLTS) // Pulse to toggle bolts (but only raise if power is on). if(!A.locked) A.bolt() diff --git a/tgstation.dme b/tgstation.dme index 1a79c32dcb..db57c39fac 100755 --- a/tgstation.dme +++ b/tgstation.dme @@ -470,8 +470,8 @@ #include "code\datums\elements\_element.dm" #include "code\datums\elements\cleaning.dm" #include "code\datums\elements\earhealing.dm" -#include "code\datums\elements\wuv.dm" #include "code\datums\elements\ghost_role_eligibility.dm" +#include "code\datums\elements\wuv.dm" #include "code\datums\helper_datums\events.dm" #include "code\datums\helper_datums\getrev.dm" #include "code\datums\helper_datums\icon_snapshot.dm"