mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 00:28:20 +08:00
Fix: 修复一些bug
- 修复了日常结束后不收菜的问题 - 修复登录 - 增加不能使用潜艇的地图的覆盖设置 - 修复了因图片不更新导致二队不会跳过阵容检查的问题 - 修复了一些过场图导致进入战斗判断错误的问题
This commit is contained in:
@@ -2,7 +2,7 @@ from module.combat.combat import Combat
|
||||
from module.logger import logger
|
||||
from module.base.timer import Timer
|
||||
from module.handler.assets import LOGIN_CHECK, LOGIN_ANNOUNCE
|
||||
from module.ui.ui import MAIN_CHECK, EVENT_LIST_CHECK
|
||||
from module.ui.ui import MAIN_CHECK, EVENT_LIST_CHECK, BACK_ARROW
|
||||
|
||||
|
||||
class LoginHandler(Combat):
|
||||
@@ -19,8 +19,8 @@ class LoginHandler(Combat):
|
||||
continue
|
||||
if self.appear_then_click(LOGIN_ANNOUNCE, offset=(30, 30), interval=1):
|
||||
continue
|
||||
if self.appear(EVENT_LIST_CHECK):
|
||||
self.ui_back(check_button=MAIN_CHECK, appear_button=EVENT_LIST_CHECK, skip_first_screenshot=True)
|
||||
if self.appear(EVENT_LIST_CHECK, offset=(30, 30), interval=1):
|
||||
self.device.click(BACK_ARROW)
|
||||
continue
|
||||
|
||||
if self.info_bar_count() and self.appear_then_click(LOGIN_CHECK, interval=0.5):
|
||||
|
||||
Reference in New Issue
Block a user