mirror of
https://github.com/babalae/bettergi-scripts-list.git
synced 2026-05-17 09:36:55 +08:00
fix(AutoPlan): 修复自动计划循环逻辑
- 修改了循环条件判断逻辑 - 更新了体力不足时的循环行为 - 添加了正确的循环控制注释
This commit is contained in:
@@ -469,9 +469,10 @@ async function main() {
|
||||
while (true) {
|
||||
await autoRunList(list);
|
||||
if (false && config.user.physical.current < config.user.physical.min) {
|
||||
//不循环跑
|
||||
//循环跑
|
||||
break
|
||||
}else {
|
||||
//不循环
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user