From 4ca45f95d3df127a73898b6359d45de1b44b9182 Mon Sep 17 00:00:00 2001 From: lbnesquik Date: Thu, 30 Jul 2020 20:41:43 +0200 Subject: [PATCH] Add a 'Restarting world!' notice. --- code/controllers/subsystems/ticker.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/controllers/subsystems/ticker.dm b/code/controllers/subsystems/ticker.dm index 62c8b79932..325558f8b1 100644 --- a/code/controllers/subsystems/ticker.dm +++ b/code/controllers/subsystems/ticker.dm @@ -267,6 +267,8 @@ var/global/datum/controller/subsystem/ticker/ticker to_world("An admin has delayed the round end.") end_game_state = END_GAME_DELAYED else if(restart_timeleft <= 0) + to_world("Restarting world!") + sleep(5) world.Reboot() else if (world.time - last_restart_notify >= 1 MINUTE) to_world("Restarting in [round(restart_timeleft/600, 1)] minute\s.")