From c338fa29ccc786fafdeb26842fd4aedcd33c080c Mon Sep 17 00:00:00 2001 From: LordME <58342752+TheLordME@users.noreply.github.com> Date: Thu, 21 Aug 2025 16:55:08 +0200 Subject: [PATCH] fix delayed reboot happening immidetly (#7271) ## About The Pull Request ## Why It's Good For The Game ## Changelog :cl: fix: fix delayed reboot happening immidetly /:cl: --- code/controllers/subsystem/ticker.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index a704fa5e159..5e9998388fa 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -189,8 +189,6 @@ SUBSYSTEM_DEF(ticker) var/start_wait = world.time //UNTIL(round_end_sound_sent || (world.time - start_wait) > (delay * 2)) //don't wait forever while(world.time - start_wait < delay) - if(delay_end) //delayed, break loop. - break var/timeleft = delay - (world.time - start_wait) // If we have less than 10 seconds left. if(timeleft <= 10 SECONDS)