From 353f86546695332a74931313a475938924f6382f Mon Sep 17 00:00:00 2001 From: CWX Date: Thu, 26 Dec 2024 22:45:35 +0000 Subject: [PATCH] Added Version so model matches launcher and what live uses --- project/SPT.Common/Http/ServerConfig.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/project/SPT.Common/Http/ServerConfig.cs b/project/SPT.Common/Http/ServerConfig.cs index 4e8900a..fe0ba58 100644 --- a/project/SPT.Common/Http/ServerConfig.cs +++ b/project/SPT.Common/Http/ServerConfig.cs @@ -4,11 +4,13 @@ { public string BackendUrl { get; } public string MatchingVersion { get; } + public string Version { get; } - public ServerConfig(string backendUrl, string matchingVersion) + public ServerConfig(string backendUrl, string matchingVersion, string version) { BackendUrl = backendUrl; MatchingVersion = matchingVersion; + Version = version; } } }