fix(task): 修复每周三启动游戏时卡住的问题
原因是启动游戏任务中会点击屏幕中间来跳过奖励领取,而每周三的「学マス水曜日」奖励画面中间恰好是奖励内容,点击中间并不会跳过,导致死循环。
This commit is contained in:
parent
c88ec6e2f4
commit
96769344ec
|
@ -52,7 +52,7 @@ def wait_for_home():
|
|||
pass
|
||||
|
||||
if should_click and click_cd.expired():
|
||||
device.click_center()
|
||||
device.click(0, 0)
|
||||
click_cd.reset()
|
||||
it.wait()
|
||||
|
||||
|
|
Loading…
Reference in New Issue