diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 3d5271086b..d26d8be105 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -45,6 +45,7 @@ /Content.Shared/Damage/ @ElectroJr /Content.Shared/Containers/ItemSlot/ @ElectroJr /Content.*/PowerCell/ @ElectroJr +/Content.*/Doors/ @ElectroJr # Only some of this shit code is my responsibility, but I wanna get notified: /Content.*/Interaction/ @ElectroJr diff --git a/Content.Server/Doors/Systems/DoorSystem.cs b/Content.Server/Doors/Systems/DoorSystem.cs index 32398d3887..4262345e5d 100644 --- a/Content.Server/Doors/Systems/DoorSystem.cs +++ b/Content.Server/Doors/Systems/DoorSystem.cs @@ -92,7 +92,7 @@ public sealed class DoorSystem : SharedDoorSystem } // send the sound to players. - SoundSystem.Play(filter, sound, uid, AudioParams.Default.WithVolume(-5)); + SoundSystem.Play(filter, sound, uid, audioParams); } #region DoAfters