1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2026-01-09 07:15:43 +00:00

Compare commits

..

No commits in common. "74376e8627adec933613858fa9c0ccfdd95ab89f" and "768da4d37f744d379863b2b47e9b60d9b3bea8ca" have entirely different histories.

2 changed files with 3 additions and 4 deletions

View File

@ -265,7 +265,6 @@ class Mission(MissionUI, CommissionsUI):
if status == MissionStatus.FINISH:
break
# delay mission to 7 hours if there are still stages in the queue
self.config.task_delay(minute=420) if self.task else self.config.task_delay(server_update=True)
self.config.task_delay(server_update=True)

View File

@ -25,7 +25,7 @@ class StageList:
):
self.name = name
self.stage = button_list if button_list else STAGE_LIST
self.index_ocr = Ocr(button_index if button_index else OCR_INDEX, lang='zhs')
self.index_ocr = Ocr(button_index if button_index else OCR_INDEX, lang='en')
self.stage_item = (button_item if button_item else STAGE_ITEM).button
self.enter = button_enter if button_enter else STAGE_ENTER
self.sweepable = button_stars if button_stars else STAGE_STARS