From 77889626dd3a5ee3e16d4cc1fcf65716a1e76bc6 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 23 Oct 2020 00:01:32 +0200 Subject: [PATCH] [MIRROR] Makes flashlights do a clicky noise when they're turned on or off (#1425) * Makes flashlights do a clicky noise when they're turned on or off (#54521) * Makes flashlights do a clicky noise when they're turned on or off Co-authored-by: Azarak --- code/game/objects/items/devices/flashlight.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index 485cb54cbc1..6391163f231 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -36,6 +36,7 @@ /obj/item/flashlight/attack_self(mob/user) on = !on + playsound(user, on ? 'sound/weapons/magin.ogg' : 'sound/weapons/magout.ogg', 40, TRUE) update_brightness(user) for(var/X in actions) var/datum/action/A = X