Fix: Goto B8 using boss fleet (fixed #4127)

This commit is contained in:
LmeSzinc 2024-09-02 23:40:38 +08:00
parent 7c574ceaf5
commit 42bda736c0
2 changed files with 4 additions and 4 deletions

View File

@ -85,8 +85,8 @@ class Campaign(CampaignBase):
# Handle giant boss at A8
logger.info('B2 before boss')
grid = SelectedGrids([B6, C7]).sort('weight', 'cost')[0]
self.goto(grid)
self.goto(B8)
self.fleet_boss.goto(grid)
self.fleet_boss.goto(B8)
def clear_boss(self):
self.before_boss()

View File

@ -94,8 +94,8 @@ class Campaign(CampaignBase):
# Handle giant boss at A8
logger.info('B2 before boss')
grid = SelectedGrids([B6, C7]).sort('weight', 'cost')[0]
self.goto(grid)
self.goto(B8)
self.fleet_boss.goto(grid)
self.fleet_boss.goto(B8)
def clear_boss(self):
self.before_boss()