From 86fb89edb8d2e26ab8202a76ae365f2e5eaecdb2 Mon Sep 17 00:00:00 2001 From: ElectroJr Date: Tue, 1 Feb 2022 13:39:33 +1300 Subject: [PATCH] update codeowners & tiny door bugfix --- .github/CODEOWNERS | 1 + Content.Server/Doors/Systems/DoorSystem.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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