mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-16 13:57:26 +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
|
# Confirm selected ship
|
||||||
# Clear interval if alas have just selected and exited from a meta skill
|
# Clear interval if alas have just selected and exited from a meta skill
|
||||||
self.interval_clear(SHIP_CONFIRM)
|
self.interval_clear(SHIP_CONFIRM)
|
||||||
|
|
||||||
# Removed the use of TACTICAL_SKILL_LIST, cause EN uses "Select skills"
|
# Removed the use of TACTICAL_SKILL_LIST, cause EN uses "Select skills"
|
||||||
# in normal skill list but "Choose skills" in META skill list
|
# 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
|
return True
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user