From 3b935ce854861ec55cf2658d318cc52e256aa49b Mon Sep 17 00:00:00 2001 From: PsiOmega Date: Tue, 23 Jun 2015 18:15:30 +0200 Subject: [PATCH] Fixes #9813. Cutting fire alarm wiring now produces cables. --- code/game/machinery/alarm.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index 7d9b605585..b4e6c892eb 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -990,6 +990,7 @@ FIRE ALARM user.visible_message("\red [user] has disconnected [src]'s detecting unit!", "You have disconnected [src]'s detecting unit.") else if (istype(W, /obj/item/weapon/wirecutters)) user.visible_message("\red [user] has cut the wires inside \the [src]!", "You have cut the wires inside \the [src].") + new/obj/item/stack/cable_coil(get_turf(src), 5) playsound(src.loc, 'sound/items/Wirecutter.ogg', 50, 1) buildstage = 1 update_icon()