fix: StageManager.cs 服务器为不选择的时候也视为官服

This commit is contained in:
Yifan Liu
2023-02-07 01:57:15 -06:00
parent 6c85ddbae1
commit 892d24b331

View File

@@ -90,7 +90,7 @@ namespace MaaWpfGui
var clientType = settingsModel.ClientType;
// 官服和B服使用同样的资源
if (clientType == "Bilibili")
if (clientType == "Bilibili" || clientType == string.Empty)
{
clientType = "Official";
}