mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-11 23:18:22 +08:00
Fix: Avoid TooManyClickError when receiving abyssal progress rewards (#3664)
This commit is contained in:
@@ -150,24 +150,24 @@ class MapEventHandler(EnemySearchingHandler):
|
||||
drop (DropImage):
|
||||
|
||||
Returns:
|
||||
bool: If clicked to handle any map event.
|
||||
str: Event that handled
|
||||
"""
|
||||
if self.handle_map_get_items(drop=drop):
|
||||
return True
|
||||
return 'map_get_items'
|
||||
if self.handle_os_game_tips():
|
||||
return True
|
||||
return 'os_game_tips'
|
||||
if self.handle_map_archives(drop=drop):
|
||||
return True
|
||||
return 'map_archives'
|
||||
if self.handle_guild_popup_cancel():
|
||||
return True
|
||||
return 'guild_popup_cancel'
|
||||
if self.handle_ash_popup():
|
||||
return True
|
||||
return 'ash_popup'
|
||||
if self.handle_urgent_commission(drop=drop):
|
||||
return True
|
||||
return 'urgent_commission'
|
||||
if self.handle_story_skip():
|
||||
return True
|
||||
return 'story_skip'
|
||||
|
||||
return False
|
||||
return ''
|
||||
|
||||
_os_in_map_confirm_timer = Timer(1.5, count=3)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user