diff --git a/Content.Server/Sound/EmitSoundSystem.cs b/Content.Server/Sound/EmitSoundSystem.cs index e4f9ebcb43..3c7713b305 100644 --- a/Content.Server/Sound/EmitSoundSystem.cs +++ b/Content.Server/Sound/EmitSoundSystem.cs @@ -29,7 +29,7 @@ public sealed class EmitSoundSystem : SharedEmitSoundSystem { if (soundSpammer.PopUp != null) Popup.PopupEntity(Loc.GetString(soundSpammer.PopUp), uid); - TryEmitSound(uid, soundSpammer); + TryEmitSound(uid, soundSpammer, predict: false); } } } @@ -44,12 +44,12 @@ public sealed class EmitSoundSystem : SharedEmitSoundSystem private void HandleEmitSoundOnUIOpen(EntityUid uid, EmitSoundOnUIOpenComponent component, AfterActivatableUIOpenEvent args) { - TryEmitSound(uid, component, args.User); + TryEmitSound(uid, component, args.User, false); } private void HandleEmitSoundOnTrigger(EntityUid uid, EmitSoundOnTriggerComponent component, TriggerEvent args) { - TryEmitSound(uid, component); + TryEmitSound(uid, component, args.User, false); args.Handled = true; } } diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml index 5aa602aedd..a5e26463b9 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/base_structurecomputers.yml @@ -52,6 +52,8 @@ - type: EmitSoundOnUIOpen sound: collection: Keyboard + params: + volume: -1 - type: ContainerContainer containers: board: !type:Container