1
0
mirror of https://github.com/TheFunny/ArisuAutoSweeper synced 2025-12-16 19:55:12 +00:00

Compare commits

...

4 Commits

Author SHA1 Message Date
RedDeadDepresso
33df5522f1
Merge 84b1ca880f into 2cad7ebbac 2024-01-02 21:14:50 +00:00
RedDeadDepresso
84b1ca880f chore: updated lesson gui section 2024-01-02 21:14:38 +00:00
RedDeadDepresso
74376e8627 feat: 7 hours mission delay 2024-01-02 21:06:04 +00:00
RedDeadDepresso
29e2865d93 fix: mission ocr 2024-01-02 20:57:08 +00:00
3 changed files with 5 additions and 4 deletions

View File

@ -315,7 +315,7 @@
},
"Classrooms": {
"name": "Classrooms",
"help": "Type a number from 1 to 9 that represents the classroom position in the locations popup.\nUse > to connect multiple classrooms and AAS will select them following the order they appear. Example:\n5 > 3 > 2 > 4 > 1"
"help": "Type a number from 1 to 9 that represents the classroom position in the locations popup.\nUse > to connect multiple classrooms and AAS will select them following the order they appear. Example:\n8 > 7 > 6 > 5 > 4 > 3 > 2 > 1"
}
},
"Choice2": {

View File

@ -265,6 +265,7 @@ class Mission(MissionUI, CommissionsUI):
if status == MissionStatus.FINISH:
break
self.config.task_delay(server_update=True)
# 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)

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='en')
self.index_ocr = Ocr(button_index if button_index else OCR_INDEX, lang='zhs')
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