From 304f678b17c3b2db6242abfdbf4c4c780ced4c4c Mon Sep 17 00:00:00 2001 From: ShadowLarkens Date: Tue, 22 Oct 2024 11:48:08 -0700 Subject: [PATCH] Use roundduration2text() in statpanel (#16508) ROUND_TIME doesn't work here --- code/controllers/subsystems/statpanel.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/controllers/subsystems/statpanel.dm b/code/controllers/subsystems/statpanel.dm index c80e7cd1fbe..870d32b1ec3 100644 --- a/code/controllers/subsystems/statpanel.dm +++ b/code/controllers/subsystems/statpanel.dm @@ -33,7 +33,7 @@ SUBSYSTEM_DEF(statpanels) //"Next Map: -- Not Available --", // "Round ID: [GLOB.round_id ? GLOB.round_id : "NULL"]", "Server Time: [time2text(world.timeofday, "YYYY-MM-DD hh:mm:ss")]", - "Round Time: [ROUND_TIME()]", + "Round Time: [roundduration2text()]", "Station Date: [stationdate2text()]", // [capitalize(GLOB.world_time_season)]", "Station Time: [stationtime2text()]", "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)]%)"