mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-09 18:39:04 +08:00
Fix: Lower threshold of SELECT_* assets
This commit is contained in:
parent
f47e7b046e
commit
0bd4467ccb
@ -130,7 +130,10 @@ class GlobeOperation(ActionPointHandler, MapEventHandler):
|
||||
Returns:
|
||||
list[Button]:
|
||||
"""
|
||||
return [select for select in ZONE_SELECT if self.appear(select, offset=self._zone_select_offset)]
|
||||
# Lower threshold to 0.75
|
||||
# Don't know why buy but fonts are different sometimes
|
||||
return [select for select in ZONE_SELECT if
|
||||
self.appear(select, offset=self._zone_select_offset, threshold=0.75)]
|
||||
|
||||
def is_in_zone_select(self):
|
||||
"""
|
||||
|
||||
Loading…
Reference in New Issue
Block a user