Skip to content

Commit

Permalink
Removed inconsistent broadcast cooldown whenever the "Announce" butto…
Browse files Browse the repository at this point in the history
…n is pressed on the communications terminal.
  • Loading branch information
superjj18 committed Mar 28, 2024
1 parent 29fb3ca commit c730d64
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Content.Server/Communications/CommunicationsConsoleSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ private static bool CanAnnounce(CommunicationsConsoleComponent comp)

private static bool CanBroadcast(CommunicationsConsoleComponent comp)
{
return comp.AnnouncementCooldownRemaining <= 0f;
// No broadcast delay
return true;
}

private bool CanUse(EntityUid user, EntityUid console)
Expand Down

0 comments on commit c730d64

Please sign in to comment.