mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 02:23:01 +08:00
feat: 添加刷理智任务报错提示
This commit is contained in:
@@ -970,7 +970,13 @@ namespace MaaWpfGui.ViewModels.UI
|
||||
|
||||
bool mainFightRet = Instances.AsstProxy.AsstAppendFight(curStage, medicine, stone, times, DropsItemId, dropsQuantity);
|
||||
|
||||
if (mainFightRet && (curStage == "Annihilation") && Instances.SettingsViewModel.UseAlternateStage)
|
||||
if (!mainFightRet)
|
||||
{
|
||||
AddLog(LocalizationHelper.GetString("UnsupportedStages") + ": " + curStage, UiLogColor.Error);
|
||||
return false;
|
||||
}
|
||||
|
||||
if ((curStage == "Annihilation") && Instances.SettingsViewModel.UseAlternateStage)
|
||||
{
|
||||
foreach (var stage in new[] { Stage1, Stage2, Stage3 })
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user