diff --git a/Content.Client/GameObjects/EntitySystems/BackgroundAudioSystem.cs b/Content.Client/GameObjects/EntitySystems/BackgroundAudioSystem.cs index f0cd863d46..33c6a9277d 100644 --- a/Content.Client/GameObjects/EntitySystems/BackgroundAudioSystem.cs +++ b/Content.Client/GameObjects/EntitySystems/BackgroundAudioSystem.cs @@ -31,7 +31,7 @@ namespace Content.Client.GameObjects.EntitySystems private SoundCollectionPrototype _ambientCollection = default!; private AudioParams _ambientParams = new(-10f, 1, "Master", 0, 0, AudioMixTarget.Stereo, true, 0f); - private AudioParams _lobbyParams = new(5f, 1, "Master", 0, 0, AudioMixTarget.Stereo, true, 0f); + private AudioParams _lobbyParams = new(-5f, 1, "Master", 0, 0, AudioMixTarget.Stereo, true, 0f); private IPlayingAudioStream? _ambientStream; private IPlayingAudioStream? _lobbyStream;