mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-20 02:55:38 +08:00
chore: tweaked SSS copilot operators output
This commit is contained in:
@@ -113,6 +113,13 @@ public class SSSCopilotModel : CopilotBase
|
||||
|
||||
output.Add((string.Format(LocalizationHelper.GetString("TotalOperatorsCount"), count), null));
|
||||
|
||||
if (ToolMen is not null)
|
||||
{
|
||||
var toolMenLog = LocalizationHelper.GetString("OtherOperators");
|
||||
var toolMenString = string.Join("\n", ToolMen.Select(kv => $"{char.ToUpper(kv.Key[0]) + kv.Key[1..].ToLower()}: {kv.Value}"));
|
||||
output.Add((toolMenLog + "\n" + toolMenString, null));
|
||||
}
|
||||
|
||||
if (Buff is not null)
|
||||
{
|
||||
var buffLog = LocalizationHelper.GetString("DirectiveECTerm");
|
||||
@@ -120,12 +127,6 @@ public class SSSCopilotModel : CopilotBase
|
||||
output.Add((buffLog + (string.IsNullOrEmpty(localizedBuffName) ? Buff : localizedBuffName), null));
|
||||
}
|
||||
|
||||
if (ToolMen is not null)
|
||||
{
|
||||
var toolMenLog = LocalizationHelper.GetString("OtherOperators");
|
||||
output.Add((toolMenLog + JsonConvert.SerializeObject(ToolMen), null));
|
||||
}
|
||||
|
||||
if (Equipment is not null)
|
||||
{
|
||||
var equipmentLog = LocalizationHelper.GetString("InitialEquipmentHorizontal") + '\n';
|
||||
|
||||
Reference in New Issue
Block a user