0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 05:10:45 -05:00

Updated Version to MatchingVersion

This commit is contained in:
Chomp 2024-12-26 21:02:26 +00:00
parent 578bfe7548
commit e040504b01
2 changed files with 4 additions and 4 deletions

View File

@ -11,18 +11,18 @@ namespace SPT.Launcher
public class ClientConfig
{
public string BackendUrl;
public string Version;
public string MatchingVersion;
public ClientConfig()
{
BackendUrl = "http://127.0.0.1:6969";
Version = "live";
MatchingVersion = "live";
}
public ClientConfig(string backendUrl)
{
BackendUrl = backendUrl;
Version = "live";
MatchingVersion = "live";
}
}
}

View File

@ -57,7 +57,7 @@ namespace SPT.Launcher.ViewModels
version.ParseVersionInfo(ServerManager.GetVersion());
LogManager.Instance.Info($"Connected to server: {ServerManager.SelectedServer.backendUrl} - SPT Version: {version}");
LogManager.Instance.Info($"Connected to server: {ServerManager.SelectedServer.backendUrl} - SPT MatchingVersion: {version}");
NavigateTo(new LoginViewModel(HostScreen, noAutoLogin));
}