mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 12:08:21 +08:00
Fix: Missing button offset of TACTICAL_META when selecting ship in tactical (#1854)
This commit is contained in:
@@ -585,9 +585,16 @@ class RewardTacticalClass(Dock):
|
||||
# Confirm selected ship
|
||||
# Clear interval if alas have just selected and exited from a meta skill
|
||||
self.interval_clear(SHIP_CONFIRM)
|
||||
|
||||
# Removed the use of TACTICAL_SKILL_LIST, cause EN uses "Select skills"
|
||||
# in normal skill list but "Choose skills" in META skill list
|
||||
self.dock_select_confirm(check_button=[SKILL_CONFIRM, TACTICAL_META])
|
||||
def check_button():
|
||||
if self.appear(SKILL_CONFIRM, offset=(30, 30)):
|
||||
return True
|
||||
if self.appear(TACTICAL_META, offset=(200, 30)):
|
||||
return True
|
||||
|
||||
self.dock_select_confirm(check_button=check_button)
|
||||
|
||||
return True
|
||||
|
||||
|
||||
Reference in New Issue
Block a user