mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-20 02:55:38 +08:00
fix: 生息演算 去除任务结算多余的延迟
This commit is contained in:
@@ -10152,9 +10152,9 @@
|
||||
"next": [
|
||||
"Reclamation@LevelComplete"
|
||||
],
|
||||
"specialParams_Doc": "二次复核前的delay,完成后的delay",
|
||||
"specialParams_Doc": "二次复核前的delay,网络不佳delay",
|
||||
"specialParams": [
|
||||
1000,
|
||||
2000,
|
||||
2000
|
||||
]
|
||||
},
|
||||
|
||||
@@ -68,10 +68,13 @@ bool asst::ReclamationBattlePlugin::_run()
|
||||
|
||||
Log.info(__FUNCTION__, "| click exit level check ", check1, check2, check3);
|
||||
|
||||
if ((!check1 && !check2) || check3) break;
|
||||
if (!check1 && !check2) break;
|
||||
if (check3) {
|
||||
sleep(Task.get("Reclamation@BattleStart")->special_params.at(1));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
sleep(Task.get("Reclamation@BattleStart")->special_params.at(1));
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user