From 94bab2b4a419bc6ec39003ba65632a6d913f312d Mon Sep 17 00:00:00 2001 From: Markolie Date: Fri, 2 Oct 2015 05:25:35 +0200 Subject: [PATCH] Announcement computer cooldown fix --- code/game/machinery/computer/communications.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 207042aeb37..7a6ffcdc22a 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -164,7 +164,7 @@ var/shuttle_call/shuttle_calls[0] nanomanager.update_uis(src) return var/input = input(usr, "Please write a message to announce to the station crew.", "Priority Announcement") - if(!input || ..() || !(is_authenticated(usr) == 2)) + if(!input || message_cooldown || ..() || !(is_authenticated(usr) == 2)) nanomanager.update_uis(src) return crew_announcement.Announce(input)