diff --git a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs index 6da7c65580..5342208546 100644 --- a/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs +++ b/Content.Server/Shuttles/Systems/ShuttleSystem.FasterThanLight.cs @@ -43,9 +43,15 @@ public sealed partial class ShuttleSystem // I'm too lazy to make CVars. - private readonly SoundSpecifier _startupSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_begin.ogg"); + private readonly SoundSpecifier _startupSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_begin.ogg") + { + Params = AudioParams.Default.WithVolume(-5f), + }; // private SoundSpecifier _travelSound = new SoundPathSpecifier(); - private readonly SoundSpecifier _arrivalSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_end.ogg"); + private readonly SoundSpecifier _arrivalSound = new SoundPathSpecifier("/Audio/Effects/Shuttle/hyperspace_end.ogg") + { + Params = AudioParams.Default.WithVolume(-5f), + }; private readonly TimeSpan _hyperspaceKnockdownTime = TimeSpan.FromSeconds(5); diff --git a/Resources/Audio/Effects/Shuttle/hyperspace_begin.ogg b/Resources/Audio/Effects/Shuttle/hyperspace_begin.ogg index ccd50d7736..225e2d9882 100644 Binary files a/Resources/Audio/Effects/Shuttle/hyperspace_begin.ogg and b/Resources/Audio/Effects/Shuttle/hyperspace_begin.ogg differ diff --git a/Resources/Audio/Effects/Shuttle/hyperspace_end.ogg b/Resources/Audio/Effects/Shuttle/hyperspace_end.ogg index a1cad453b8..64fb5214a9 100644 Binary files a/Resources/Audio/Effects/Shuttle/hyperspace_end.ogg and b/Resources/Audio/Effects/Shuttle/hyperspace_end.ogg differ