From e41f0461d9ebe9ffd6b7beb5e09f127384481fb4 Mon Sep 17 00:00:00 2001 From: Putnam3145 Date: Sat, 30 Apr 2022 17:45:56 -0700 Subject: [PATCH] Fixes the round time thing --- 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 d0d5579611..6ba2caa31d 100644 --- a/code/controllers/subsystem/statpanel.dm +++ b/code/controllers/subsystem/statpanel.dm @@ -18,7 +18,7 @@ SUBSYSTEM_DEF(statpanels) cached ? "Next Map: [cached.map_name]" : null, "Round ID: [GLOB.round_id ? GLOB.round_id : "NULL"]", "Server Time: [time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss")]", - "Round Time: [round_time > MIDNIGHT_ROLLOVER ? "[round(round_time/MIDNIGHT_ROLLOVER)]:[worldtime2text()]" : worldtime2text()]", + "Round Time: [GAMETIMESTAMP("hh:mm:ss", round_time)]", "Station Time: [STATION_TIME_TIMESTAMP("hh:mm:ss", world.time)]", "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)]%)" )