diff --git a/campaign/event_20240815_cn/b2.py b/campaign/event_20240815_cn/b2.py index 4f1e563c4..b6a690c64 100644 --- a/campaign/event_20240815_cn/b2.py +++ b/campaign/event_20240815_cn/b2.py @@ -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() diff --git a/campaign/event_20240815_cn/d2.py b/campaign/event_20240815_cn/d2.py index 5fac5e519..efa7e7ab1 100644 --- a/campaign/event_20240815_cn/d2.py +++ b/campaign/event_20240815_cn/d2.py @@ -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()