Updated UTC time values to match live

This commit is contained in:
Chomp
2025-01-16 15:21:54 +00:00
parent fd010efbe7
commit ebfaf73870
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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")]
+2 -2
View File
@@ -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; }
}