diff --git a/code/datums/vote.dm b/code/datums/vote.dm index 2dc00f8870..02eb9cde28 100644 --- a/code/datums/vote.dm +++ b/code/datums/vote.dm @@ -144,7 +144,7 @@ var/global/list/round_voters = list() //Keeps track of the individuals voting fo world << "Round ending due to vote." log_game("Ending the round due to restart vote.") map.next_win = world.time - 100 - //ticker.finished = TRUE // TO-DO: See if it doesn't affect anything else, but only seems to be in map metadata files. + ticker.finished = TRUE // TO-DO: See if it doesn't affect anything else, but only seems to be in map metadata files. processes.epochswap.admin_triggered = FALSE processes.epochswap.restart_triggered = TRUE processes.epochswap.ready = TRUE diff --git a/code/processes/mapswap.dm b/code/processes/mapswap.dm index 3f80766ded..c0e664d542 100644 --- a/code/processes/mapswap.dm +++ b/code/processes/mapswap.dm @@ -28,7 +28,7 @@ ) var/ready = TRUE var/admin_triggered = FALSE - var/restart_triggered = TRUE + var/restart_triggered = FALSE var/finished_at = -1 /process/epochswap/setup()