diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index 0f0282ea7e..6494908020 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -103,7 +103,6 @@ public sealed class RadioSystem : EntitySystem var speakerQuery = GetEntityQuery(); var radioQuery = EntityQueryEnumerator(); - var sentAtLeastOnce = false; while (canSend && radioQuery.MoveNext(out var receiver, out var radio, out var transform)) { if (!radio.Channels.Contains(channel.ID) || (TryComp(receiver, out var intercom) && !intercom.SupportedChannels.Contains(channel.ID))) @@ -126,10 +125,7 @@ public sealed class RadioSystem : EntitySystem // send the message RaiseLocalEvent(receiver, ref ev); - sentAtLeastOnce = true; } - if (!sentAtLeastOnce) - _popup.PopupEntity(Loc.GetString("failed-to-send-message"), messageSource, messageSource, PopupType.MediumCaution); if (name != Name(messageSource)) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"Radio message from {ToPrettyString(messageSource):user} as {name} on {channel.LocalizedName}: {message}"); diff --git a/Resources/Locale/en-US/radio/radio-event.ftl b/Resources/Locale/en-US/radio/radio-event.ftl deleted file mode 100644 index 63c264b0ab..0000000000 --- a/Resources/Locale/en-US/radio/radio-event.ftl +++ /dev/null @@ -1 +0,0 @@ -failed-to-send-message = Failed to send message!