From e226abc02999cf71b960b73a44e5bd103cf73465 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 21 Aug 2025 13:39:17 +0100 Subject: [PATCH] Fixed Settings model --- .../Models/Spt/Server/SettingsBase.cs | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs b/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs index 9887eae4..1e48fb5c 100644 --- a/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs +++ b/Libraries/SPTarkov.Server.Core/Models/Spt/Server/SettingsBase.cs @@ -59,6 +59,16 @@ public record Config [JsonPropertyName("NextCycleDelaySeconds")] public int NextCycleDelaySeconds { get; set; } + // TODO: this property currently is an empty array on json + [JsonPropertyName("NotifierLobbyAidsForce")] + public object[] NotifierLobbyAidsForce { get; set; } + + [JsonPropertyName("NotifierLobbyPercentage")] + public int NotifierLobbyPercentage { get; set; } + + [JsonPropertyName("NotifierUseLobby")] + public bool NotifierUseLobby { get; set; } + [JsonPropertyName("PingServerResultSendInterval")] public int PingServerResultSendInterval { get; set; } @@ -301,7 +311,7 @@ public record AudioGroupAcousticSetting public record AcousticSettings { - [JsonPropertyName("EnabledPrewarm")] + [JsonPropertyName("enabledPrewarm")] public bool enabledPrewarm { get; set; } [JsonPropertyName("mono")]