fix: 修复关卡导航往右滑不到位的问题

This commit is contained in:
MistEO
2022-10-30 04:03:30 +08:00
parent 95d80ee7d7
commit 7bcc73ac82

View File

@@ -49,7 +49,10 @@ bool asst::StageNavigationTask::swipe_and_find_stage()
{
LogTraceFunction;
ProcessTask(*this, { "SwipeToTheRight" }).run();
ProcessTask to_right(*this, { "SwipeToTheRight" });
for (int i = 0; i < 3; ++i) {
to_right.run();
}
auto task_ptr = Task.get("EpisodeStageNameOcr");
for (int i = 0; i < task_ptr->max_times; ++i) {