1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-04-01 04:40:34 +08:00

Fix: Beacon data reached the limit to hold but daily limit is not

This commit is contained in:
LmeSzinc
2022-09-25 19:36:59 +08:00
parent 73a3bf4220
commit 5320df9f79

View File

@@ -116,6 +116,9 @@ class OSAsh(UI, MapEventHandler):
if daily >= 200: if daily >= 200:
logger.info('Ash beacon fully collected today') logger.info('Ash beacon fully collected today')
self._ash_fully_collected = True self._ash_fully_collected = True
elif status >= 200:
logger.info('Ash beacon data reached the holding limit')
self._ash_fully_collected = True
if status < 0: if status < 0:
status = 0 status = 0