mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 06:18:21 +08:00
Fix: Handle game tips when entering mewofficer enhance
This commit is contained in:
@@ -401,3 +401,23 @@ class InfoHandler(ModuleBase):
|
||||
return False
|
||||
|
||||
self.ensure_no_story()
|
||||
|
||||
"""
|
||||
Game tips
|
||||
"""
|
||||
def handle_game_tips(self):
|
||||
"""
|
||||
Returns:
|
||||
bool: If handled
|
||||
"""
|
||||
if self.appear(GAME_TIPS, offset=(20, 20), interval=2):
|
||||
self.device.click(GAME_TIPS)
|
||||
return True
|
||||
if self.appear(GAME_TIPS3, offset=(20, 20), interval=2):
|
||||
self.device.click(GAME_TIPS)
|
||||
return True
|
||||
if self.appear(GAME_TIPS4, offset=(20, 20), interval=2):
|
||||
self.device.click(GAME_TIPS)
|
||||
return True
|
||||
|
||||
return False
|
||||
|
||||
Reference in New Issue
Block a user