diff --git a/Content.Server/Communications/CommunicationsConsoleComponent.cs b/Content.Server/Communications/CommunicationsConsoleComponent.cs index e8a47ea2c4..7945b77e18 100644 --- a/Content.Server/Communications/CommunicationsConsoleComponent.cs +++ b/Content.Server/Communications/CommunicationsConsoleComponent.cs @@ -10,8 +10,10 @@ using Content.Shared.Communications; using Content.Shared.Interaction; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Audio; using Robust.Shared.GameObjects; using Robust.Shared.IoC; +using Robust.Shared.Player; using Robust.Shared.Timing; using Robust.Shared.ViewVariables; using Timer = Robust.Shared.Timing.Timer; @@ -114,6 +116,8 @@ namespace Content.Server.Communications author = $"{id.FullName} ({CultureInfo.CurrentCulture.TextInfo.ToTitleCase(id.JobTitle ?? string.Empty)})".Trim(); } + SoundSystem.Play(Filter.Broadcast(), "/Audio/Announcements/announce.ogg", AudioParams.Default.WithVolume(-2f)); + message += $"\nSent by {author}"; _chatManager.DispatchStationAnnouncement(message, "Communications Console"); break; diff --git a/Resources/Audio/Announcements/announce.ogg b/Resources/Audio/Announcements/announce.ogg new file mode 100644 index 0000000000..0ee0f36d56 Binary files /dev/null and b/Resources/Audio/Announcements/announce.ogg differ