From 9df836baca2481993e2b0a9bdb10b3fca722618d Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 16 Jan 2018 09:29:12 -0500 Subject: [PATCH] Merge pull request #34479 from F-OS/patch-5 newly built air alarms now start unlocked too, this isn't powercreep this is quality of life --- code/modules/atmospherics/machinery/airalarm.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/atmospherics/machinery/airalarm.dm b/code/modules/atmospherics/machinery/airalarm.dm index 1edd95da26..6fd846ad66 100644 --- a/code/modules/atmospherics/machinery/airalarm.dm +++ b/code/modules/atmospherics/machinery/airalarm.dm @@ -687,7 +687,7 @@ if(istype(W, /obj/item/stack/cable_coil)) var/obj/item/stack/cable_coil/cable = W if(cable.get_amount() < 5) - to_chat(user, "You need five lengths of cable to wire the fire alarm!") + to_chat(user, "You need five lengths of cable to wire the air alarm!") return user.visible_message("[user.name] wires the air alarm.", \ "You start wiring the air alarm...") @@ -697,7 +697,7 @@ to_chat(user, "You wire the air alarm.") wires.repair() aidisabled = 0 - locked = TRUE + locked = FALSE mode = 1 shorted = 0 post_alert(0)