From 3abbc8925361cb265b2af780f523bfc9e4fd4c22 Mon Sep 17 00:00:00 2001 From: PsyCommando Date: Tue, 24 Jan 2023 16:48:41 -0500 Subject: [PATCH] Fixed vents hum being completely silent --- code/modules/atmospherics/components/unary/vent_pump.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/atmospherics/components/unary/vent_pump.dm b/code/modules/atmospherics/components/unary/vent_pump.dm index af4c2cb6d0a..f1ad221e2d2 100644 --- a/code/modules/atmospherics/components/unary/vent_pump.dm +++ b/code/modules/atmospherics/components/unary/vent_pump.dm @@ -575,7 +575,7 @@ if(!sound_id) sound_id = "[sequential_id("vent_z[z]")]" if(can_pump()) - sound_token = play_looping_sound(src, sound_id, 'sound/machines/vent_hum.ogg', 3, range = 7, falloff = 4) + sound_token = play_looping_sound(src, sound_id, 'sound/machines/vent_hum.ogg', 10, range = 7, falloff = 4) else QDEL_NULL(sound_token)