From 9104dd38e1624e245fc8251f41cdaaa0441610c5 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Thu, 26 May 2011 00:14:48 +0000 Subject: [PATCH] Reduced the volume of that annoying emitter noise by a lot. It was at 75, it's not at 25 which makes it barable even when you have two emitters firing at once. So hopefully less ear-rape for engineers. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@1618 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/power/singularity/emitter.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/singularity/emitter.dm b/code/modules/power/singularity/emitter.dm index ac094eae861..bacf9a69ce7 100644 --- a/code/modules/power/singularity/emitter.dm +++ b/code/modules/power/singularity/emitter.dm @@ -87,7 +87,7 @@ use_power(1000) var/obj/beam/a_laser/A = new /obj/beam/a_laser( src.loc ) A.icon_state = "u_laser" - playsound(src.loc, 'emitter.ogg', 75, 1) + playsound(src.loc, 'emitter.ogg', 25, 1) if(prob(35)) var/datum/effects/system/spark_spread/s = new /datum/effects/system/spark_spread s.set_up(5, 1, src)