From 362a5975f764a548f21de8fffd1dc7288a54c9f7 Mon Sep 17 00:00:00 2001 From: Mickyan <38563876+Mickyan@users.noreply.github.com> Date: Sat, 3 Oct 2020 20:33:28 +0200 Subject: [PATCH] Lowers default instrument volume (#54147) --- code/modules/instruments/songs/_song.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/instruments/songs/_song.dm b/code/modules/instruments/songs/_song.dm index 019ecc41f57..59b86cedabd 100644 --- a/code/modules/instruments/songs/_song.dm +++ b/code/modules/instruments/songs/_song.dm @@ -38,7 +38,7 @@ var/max_repeats = 10 /// Our volume - var/volume = 75 + var/volume = 35 /// Max volume var/max_volume = 75 /// Min volume - This is so someone doesn't decide it's funny to set it to 0 and play invisible songs.