From 81024f62e939b25161e420a7f55203744479ca3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=9B=88=E1=9B=9F=E1=9A=B2=E1=9A=B2=E1=9B=96=E1=9B=8F?= =?UTF-8?q?=E1=9B=8B?= <55299415+Pockets-byte@users.noreply.github.com> Date: Fri, 16 Aug 2024 12:44:05 -0600 Subject: [PATCH] Added a cross-server comms cooldown failure message (#2652) --- code/game/machinery/computer/communications.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index d89dd93297c..b6b64a98816 100755 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -246,6 +246,7 @@ if (!can_send_messages_to_other_sectors(usr)) return if (!COOLDOWN_FINISHED(src, important_action_cooldown)) + to_chat(usr, "Please stand by, transmitter in cooldown cycle") return var/message = trim(html_encode(params["message"]), MAX_MESSAGE_LEN)