From a9c562038b0dc84583f6a54bf8d6aa28bfa9233a Mon Sep 17 00:00:00 2001 From: Return <110273561+ReturnToZender@users.noreply.github.com> Date: Wed, 17 Jun 2026 18:32:39 -0500 Subject: [PATCH] Fixes station time being broken (#5777) ## About The Pull Request This fixes the station time being incorrect on the statpanel, due to the way time is handled being changed upstream ## Why It's Good For The Game Correct time. It is not 2026 in setting ## Proof Of Testing image ## Changelog :cl: ReturnToZender fix: Station time now shows the correct year /:cl: --- code/controllers/subsystem/statpanel.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystem/statpanel.dm b/code/controllers/subsystem/statpanel.dm index 5af4a1d91c6..16c791175b3 100644 --- a/code/controllers/subsystem/statpanel.dm +++ b/code/controllers/subsystem/statpanel.dm @@ -48,7 +48,7 @@ SUBSYSTEM_DEF(statpanels) "OOC: [GLOB.ooc_allowed ? "Enabled" : "Disabled"]", // BUBBER EDIT ADDITION - Extra stat panel info " ", // BUBBER EDIT ADDITION - Extra stat panel info "Storyteller: [SSgamemode.storyteller ? SSgamemode.storyteller.name : "N/A"]", // BUBBER EDIT ADDITION - Extra stat panel info - "Station Time: [server_timestamp(format = "YYYY-MM-DD hh:mm:ss")]", + "Station Time: [server_timestamp(format = "YYYY-MM-DD hh:mm:ss", ic_time = TRUE)]", "Round Time: [time2text(real_round_time, "hh:mm:ss", 0)]", // BUBBER EDIT CHANGE - Extra stat panel info - ORIGINAL: "Round Time: [ROUND_TIME()]" "Server Time: [time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss", world.timezone)]", "Time Dilation: [round(SStime_track.time_dilation_current,1)]% AVG:([round(SStime_track.time_dilation_avg_fast,1)]%, [round(SStime_track.time_dilation_avg,1)]%, [round(SStime_track.time_dilation_avg_slow,1)]%)",