From 883fb19a27db078777498ebe9be177fd0ea0a3ec Mon Sep 17 00:00:00 2001 From: status102 <102887808+status102@users.noreply.github.com> Date: Sat, 13 Sep 2025 20:02:22 +0800 Subject: [PATCH] feat(wpf): allow single copilot task execution MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 有人炸就派uuu @ABA2396 --- src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs b/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs index 9bf60bae8e..f29ec875ed 100644 --- a/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs +++ b/src/MaaWpfGui/ViewModels/UI/CopilotViewModel.cs @@ -1443,8 +1443,8 @@ namespace MaaWpfGui.ViewModels.UI AddLog(LocalizationHelper.GetString("Copilot.StartWithEmptyList"), UiLogColor.Error, showTime: false); return false; case 1: - AddLog(LocalizationHelper.GetString("CopilotSingleTaskWarning"), UiLogColor.Error, showTime: false); - return false; + AddLog(LocalizationHelper.GetString("CopilotSingleTaskWarning"), UiLogColor.Warning, showTime: false); + break; // 降级为警告, 有用户炸就派uuu } if (copilotItemViewModels.Any(i => string.IsNullOrEmpty(i.Name?.Trim())))