diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 859a9d4802c..71f9821302b 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -209,7 +209,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 usr << "Message transmitted." log_say("[key_name(usr)] has made a Centcom announcement: [input]") centcom_message_cooldown = 1 - spawn(6000)//10 minute cooldown + spawn(600)//One minute cooldown centcom_message_cooldown = 0 @@ -226,7 +226,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 usr << "Message transmitted." log_say("[key_name(usr)] has made a Syndicate announcement: [input]") centcom_message_cooldown = 1 - spawn(6000)//10 minute cooldown + spawn(600)//One minute cooldown centcom_message_cooldown = 0 if("RestoreBackup") @@ -559,7 +559,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12 if(is_silicon) priority_announce(input, null, null, "Priority") ai_message_cooldown = 1 - spawn(600)//One minute cooldown + spawn(3000)//Five minute cooldown ai_message_cooldown = 0 else priority_announce(input, null, 'sound/misc/announce.ogg', "Captain") diff --git a/code/modules/shuttle/shuttle.dm b/code/modules/shuttle/shuttle.dm index 7ab751c1b46..d8b42775804 100644 --- a/code/modules/shuttle/shuttle.dm +++ b/code/modules/shuttle/shuttle.dm @@ -115,5 +115,5 @@ datum/shuttle_manager/proc/move_shuttle(var/override_delay) usr << "Docking locks are engaged. Sending request to leave..." var/datum/shuttle_manager/s = shuttles["ferry"] admins << "FERRY: [key_name(usr)] (?) (Move) is requesting to move the transport ferry to [s.location == /area/shuttle/transport1/centcom ? "the station" : "Centcom"]." - spawn(100) + spawn(600) //One minute cooldown cooldown = 0 \ No newline at end of file