From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Fri, 31 Mar 2023 04:44:39 +0000 (+1100) Subject: Revert "fuckyou (#14960)" (#15006) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=ce34252cd30625bc7bbcaa4ad89008c51a520cc5;p=space-station-14.git Revert "fuckyou (#14960)" (#15006) * Revert "fuckyou (#14960)" This reverts commit e29c54d64e595f3ea6b96d0de8693f1a7afb8966. * Use volume for it --- 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