diff --git a/Content.Server/Supermatter/EntitySystems/SupermatterSystem.cs b/Content.Server/Supermatter/EntitySystems/SupermatterSystem.cs index b6ec98e82be..f8e6cf11329 100644 --- a/Content.Server/Supermatter/EntitySystems/SupermatterSystem.cs +++ b/Content.Server/Supermatter/EntitySystems/SupermatterSystem.cs @@ -273,7 +273,7 @@ private void HandleSound(EntityUid uid, SupermatterComponent sm) /// If true, the message will be sent from Central Command public void SupermatterAlert(EntityUid uid, string message, bool customSender = false) { - _chat.DispatchStationAnnouncement(uid, message, customSender ? "Central Command" : Loc.GetString("supermatter-announcement-sender"), false, null, Color.Yellow); + _chat.DispatchStationAnnouncement(uid, message, customSender ? "Central Command" : Loc.GetString("supermatter-announcement-sender"), playDefault: false, playTts: true, colorOverride: Color.Yellow); } private void GenerateAnomaly(EntityUid uid, float amount = 1)