fix(AutoPlan): 修复自动计划循环逻辑

- 修改了循环条件判断逻辑
- 更新了体力不足时的循环行为
- 添加了正确的循环控制注释
This commit is contained in:
yan
2026-02-20 16:31:19 +08:00
parent efaf77eda0
commit be24b5d0c5

View File

@@ -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
}
}