From ebfaf738708da5f5d6abbefd3c82ff8504ddb86e Mon Sep 17 00:00:00 2001 From: Chomp Date: Thu, 16 Jan 2025 15:21:54 +0000 Subject: [PATCH] Updated UTC time values to match live --- Core/Models/Eft/Game/GameConfigResponse.cs | 2 +- Core/Models/Eft/Game/GameStartResponse.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/Models/Eft/Game/GameConfigResponse.cs b/Core/Models/Eft/Game/GameConfigResponse.cs index 1d3f7b39..7b64e263 100644 --- a/Core/Models/Eft/Game/GameConfigResponse.cs +++ b/Core/Models/Eft/Game/GameConfigResponse.cs @@ -29,7 +29,7 @@ public class GameConfigResponse public bool? UseProtobuf { get; set; } [JsonPropertyName("utc_time")] - public long? UtcTime { get; set; } + public double? UtcTime { get; set; } /** Total in game time */ [JsonPropertyName("totalInGame")] diff --git a/Core/Models/Eft/Game/GameStartResponse.cs b/Core/Models/Eft/Game/GameStartResponse.cs index 2088fe5a..8ea2a124 100644 --- a/Core/Models/Eft/Game/GameStartResponse.cs +++ b/Core/Models/Eft/Game/GameStartResponse.cs @@ -1,9 +1,9 @@ -using System.Text.Json.Serialization; +using System.Text.Json.Serialization; namespace Core.Models.Eft.Game; public class GameStartResponse { [JsonPropertyName("utc_time")] - public long? UtcTime { get; set; } + public double UtcTime { get; set; } }