From 2eaf86525beec5dfc53b2b031c7983afb9a4204d Mon Sep 17 00:00:00 2001 From: Archie Date: Thu, 6 May 2021 05:25:08 -0300 Subject: [PATCH] Lower volume --- hyperstation/code/modules/power/reactor/rbmk.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hyperstation/code/modules/power/reactor/rbmk.dm b/hyperstation/code/modules/power/reactor/rbmk.dm index b1ae36aa..8f32f627 100644 --- a/hyperstation/code/modules/power/reactor/rbmk.dm +++ b/hyperstation/code/modules/power/reactor/rbmk.dm @@ -372,9 +372,9 @@ The reactor CHEWS through moderator. It does not do this slowly. Be very careful if(!isinspace(M)) if(sound) if(channel) //Doing this forbids overlapping of sounds - SEND_SOUND(M, sound(sound, repeat = loop, wait = 0, volume = 100, channel = channel)) + SEND_SOUND(M, sound(sound, repeat = loop, wait = 0, volume = 70, channel = channel)) else - SEND_SOUND(M, sound(sound, repeat = loop, wait = 0, volume = 100)) + SEND_SOUND(M, sound(sound, repeat = loop, wait = 0, volume = 70)) if(message) to_chat(M, message)