1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-22 11:43:44 +08:00

Fix: incorrect fleet died timer reset

This commit is contained in:
2025-08-19 20:37:39 +08:00
parent 9075dcd34d
commit 4b893a0a68

View File

@@ -635,11 +635,12 @@ class OSMap(OSFleet, Map, GlobeCamera, StorageHandler, StrategicSearchHandler):
if died_timer.reached(): if died_timer.reached():
logger.warning('Fleet died confirm') logger.warning('Fleet died confirm')
break break
if not interrupt_confirm and is_interrupt(): else:
interrupt_confirm = True if not interrupt_confirm and is_interrupt():
if interrupt_confirm and not_interrupt(): interrupt_confirm = True
interrupt_confirm = False if interrupt_confirm and not_interrupt():
died_timer.reset() interrupt_confirm = False
died_timer.reset()
else: else:
died_timer.reset() died_timer.reset()