1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 20:58:19 +08:00

Fix: Wrong statement in submarine hunt (#1957)

This commit is contained in:
Bookbug
2022-12-08 00:04:18 +08:00
committed by GitHub
parent aa100706b7
commit d5bcc431cf

View File

@@ -95,7 +95,7 @@ class StrategyHandler(InfoHandler):
self.strategy_set_execute(
formation_index=expected_formation,
sub_view=False,
sub_hunt=bool(self.config.Submarine_Fleet) and self.config.Submarine_Mode in ['boss_only', 'hunt_and_boss']
sub_hunt=bool(self.config.Submarine_Fleet) and self.config.Submarine_Mode in ['hunt_only', 'hunt_and_boss']
)
self.strategy_close()
self.__setattr__(f'fleet_{index}_formation_fixed', True)