1
0
mirror of https://github.com/sui-feng-cb/AzurLaneAutoScript1.git synced 2026-08-13 11:12:41 +08:00

Fix: handle OS exploration containers (#5854)

* fix: handle Operation Siren exploration containers

* chore: update os container template
This commit is contained in:
Compeador
2026-08-07 00:17:47 +08:00
committed by GitHub
parent 9c6e5b23b8
commit 84c06a37d9
8 changed files with 30 additions and 2 deletions

View File

@@ -91,8 +91,11 @@ class OpsiExplore(OSMap):
self.config.OpsiExplore_LastZone = zone
logger.info(f'Zone cleared: {self.name_to_zone(zone)}')
if finished_combat == 0:
logger.warning('Zone cleared but did not finish any combat')
self._os_explore_failed_zone.append(zone)
if 'is_exploration_container' in self._solved_map_event:
logger.info('Zone cleared by exploration container')
else:
logger.warning('Zone cleared but did not finish any combat')
self._os_explore_failed_zone.append(zone)
self.handle_after_auto_search()
self.config.check_task_switch()