From c7c3b862ea40b9557b08613f797e43dc4d9428d8 Mon Sep 17 00:00:00 2001 From: CHOMPStation2StaffMirrorBot <94713762+CHOMPStation2StaffMirrorBot@users.noreply.github.com> Date: Tue, 13 Jan 2026 03:04:34 -0700 Subject: [PATCH] [MIRROR] should just state check (#12246) Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> --- code/modules/mob/new_player/lobby_browser.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/new_player/lobby_browser.dm b/code/modules/mob/new_player/lobby_browser.dm index 9810098ba0..c8e185c955 100644 --- a/code/modules/mob/new_player/lobby_browser.dm +++ b/code/modules/mob/new_player/lobby_browser.dm @@ -53,7 +53,7 @@ data["new_station_news"] = client.prefs.lastlorenews != GLOB.news_data.newsindex data["new_changelog"] = read_preference(/datum/preference/text/lastchangelog) != GLOB.changelog_hash data["can_start_now"] = client.is_localhost() && check_rights_for(client, R_SERVER) - data["immediate_start"] = SSticker.start_immediately || (!isnull(SSticker.timeLeft) && SSticker.timeLeft < 0) + data["immediate_start"] = SSticker.start_immediately || SSticker.current_state > GAME_STATE_PREGAME return data