chore: 编队时不在干员数据内的显示输入的名称

This commit is contained in:
uye
2024-09-02 09:33:44 +08:00
parent f2b96645c8
commit 45a5e14dde

View File

@@ -1438,7 +1438,7 @@ namespace MaaWpfGui.Main
string.Join(
", ",
(subTaskDetails!["formation"]?.ToObject<List<string?>>() ?? [])
.Select(oper => DataHelper.GetLocalizedCharacterName(oper))
.Select(oper => DataHelper.GetLocalizedCharacterName(oper) ?? oper)
.Where(oper => !string.IsNullOrEmpty(oper))) + "]");
break;