v125.8.15 update

This commit is contained in:
Mikhail
2024-09-19 19:24:15 -04:00
parent 43abfe1aa8
commit 92b702116c
30 changed files with 18148 additions and 21325 deletions

View File

@@ -144,7 +144,12 @@ public partial class MainView : UserControl
SetLoadingScreenVisible(true);
try
{
await ServerSwitcher.SaveCfg(CmbServerSelection.SelectedIndex == 0, GamePath, LauncherPath, TxtIpAddress.Text, ChkOffline.IsChecked ?? false);
var res = await ServerSwitcher.SaveCfg(CmbServerSelection.SelectedIndex == 0, GamePath, LauncherPath, TxtIpAddress.Text, ChkOffline.IsChecked ?? false);
if (!res.IsSupported)
{
ShowWarningMsg("Game version might not be supported", "Warning");
}
}
catch (Exception ex)
{