mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-23 20:15:57 +08:00
Fix: typo in condition, args state greater than or equal to configured tier
This commit is contained in:
@@ -193,7 +193,7 @@ class OSAsh(UI):
|
|||||||
# Select beacon
|
# Select beacon
|
||||||
for _ in range(trial):
|
for _ in range(trial):
|
||||||
current = OCR_BEACON_TIER.ocr(self.device.image)
|
current = OCR_BEACON_TIER.ocr(self.device.image)
|
||||||
if current == tier:
|
if current >= tier:
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
self.device.click(BEACON_NEXT)
|
self.device.click(BEACON_NEXT)
|
||||||
|
|||||||
Reference in New Issue
Block a user