From bfcbe987771493fea9776128fa9ca73334bd929a Mon Sep 17 00:00:00 2001 From: Quill <292788791+QuillTheCreature@users.noreply.github.com> Date: Wed, 15 Jul 2026 02:47:12 +0200 Subject: [PATCH] Converted RoundStartTime to UTC in ServerStatusCache Signed-off-by: Quill <292788791+QuillTheCreature@users.noreply.github.com> --- SS14.Launcher/Models/ServerStatus/ServerStatusCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SS14.Launcher/Models/ServerStatus/ServerStatusCache.cs b/SS14.Launcher/Models/ServerStatus/ServerStatusCache.cs index cdcb6c45..fc52d30a 100644 --- a/SS14.Launcher/Models/ServerStatus/ServerStatusCache.cs +++ b/SS14.Launcher/Models/ServerStatus/ServerStatusCache.cs @@ -142,7 +142,7 @@ public static void ApplyStatus(ServerStatusData data, ServerApi.ServerStatus sta if (status.RoundStartTime != null) { - data.RoundStartTime = DateTime.Parse(status.RoundStartTime); + data.RoundStartTime = DateTime.Parse(status.RoundStartTime).ToUniversalTime(); } var baseTags = status.Tags ?? Array.Empty();