fix types on Settingsbase

This commit is contained in:
CWX
2025-01-07 17:58:00 +00:00
parent ddb083ae29
commit 84b3dffc95
+2 -2
View File
@@ -65,7 +65,7 @@ public class Config
public ReleaseProfiler ReleaseProfiler { get; set; }
[JsonPropertyName("RequestConfirmationTimeouts")]
public List<int> RequestConfirmationTimeouts { get; set; }
public List<double> RequestConfirmationTimeouts { get; set; }
[JsonPropertyName("RequestsMadeThroughLobby")]
public List<string> RequestsMadeThroughLobby { get; set; }
@@ -89,7 +89,7 @@ public class Config
public NetworkStateView NetworkStateView { get; set; }
[JsonPropertyName("WsReconnectionDelays")]
public List<string> WsReconnectionDelays { get; set; }
public List<int> WsReconnectionDelays { get; set; }
}
public class FramerateLimit