From c5441a1b015eb579c68e14072f0d5e6a14c7e6bd Mon Sep 17 00:00:00 2001 From: superjj18 Date: Fri, 5 Apr 2024 13:29:21 -0400 Subject: [PATCH] -fixed Broadcast button never enabling (#26750) --- .../Communications/SharedCommunicationsConsoleComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs b/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs index d48b99837f..604b067a84 100644 --- a/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs +++ b/Content.Shared/Communications/SharedCommunicationsConsoleComponent.cs @@ -11,7 +11,7 @@ namespace Content.Shared.Communications public sealed class CommunicationsConsoleInterfaceState : BoundUserInterfaceState { public readonly bool CanAnnounce; - public readonly bool CanBroadcast; + public readonly bool CanBroadcast = true; public readonly bool CanCall; public readonly TimeSpan? ExpectedCountdownEnd; public readonly bool CountdownStarted; -- 2.52.0