From 0b30e7b09d05461f9bec473d0775987c43d2d6dc Mon Sep 17 00:00:00 2001 From: Kiyahitayika <69871346+Kiyahitayika@users.noreply.github.com> Date: Thu, 15 Apr 2021 09:22:34 -0400 Subject: [PATCH] This has been bothering me (#15889) --- code/game/machinery/firealarm.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm index 541a544c02b..71e919f10cc 100644 --- a/code/game/machinery/firealarm.dm +++ b/code/game/machinery/firealarm.dm @@ -98,9 +98,8 @@ FIRE ALARM if(istype(I, /obj/item/stack/cable_coil)) var/obj/item/stack/cable_coil/coil = I if(!coil.use(5)) - to_chat(user, "You cut the wires!") + to_chat(user, "You need a total of five cables to wire [src]!") return - buildstage = FIRE_ALARM_READY playsound(get_turf(src), I.usesound, 50, 1) to_chat(user, "You wire [src]!")