1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-11 18:40:41 +08:00

Fix: Pickup ammo in 6-4 and 9-4 (fixed #1226)

This commit is contained in:
LmeSzinc
2022-08-20 23:40:11 +08:00
parent ea28a0cb65
commit eb1e43dd52
2 changed files with 4 additions and 1 deletions

View File

@@ -71,7 +71,7 @@ class Campaign(CampaignBase):
def battle_5(self):
self.clear_all_mystery()
if not self.config.FLEET_2:
if self.config.FLEET_BOSS == 1:
self.pick_up_ammo()
boss = self.map.select(is_boss=True)

View File

@@ -73,6 +73,9 @@ class Campaign(CampaignBase):
return self.battle_default()
def battle_5(self):
if self.config.FLEET_BOSS == 1:
self.pick_up_ammo()
boss = self.map.select(is_boss=True)
if boss:
if not self.check_accessibility(boss[0], fleet='boss'):