From 5400ef03dd9af8859f49b428be45decef50acf63 Mon Sep 17 00:00:00 2001 From: lbnesquik Date: Thu, 12 Aug 2021 08:51:05 +0200 Subject: [PATCH] Increase the roundstart timer from 3 to 4 --- code/controllers/subsystems/ticker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystems/ticker.dm b/code/controllers/subsystems/ticker.dm index fabfc38ec44..d3bb35e88d5 100644 --- a/code/controllers/subsystems/ticker.dm +++ b/code/controllers/subsystems/ticker.dm @@ -9,7 +9,7 @@ SUBSYSTEM_DEF(ticker) flags = SS_NO_TICK_CHECK | SS_KEEP_TIMING runlevels = RUNLEVEL_LOBBY | RUNLEVEL_SETUP | RUNLEVEL_GAME | RUNLEVEL_POSTGAME // Every runlevel! - var/const/restart_timeout = 3 MINUTES // Default time to wait before rebooting in desiseconds. + var/const/restart_timeout = 4 MINUTES // Default time to wait before rebooting in desiseconds. var/current_state = GAME_STATE_INIT // We aren't even at pregame yet // TODO replace with CURRENT_GAME_STATE /* Relies upon the following globals (TODO move those in here) */