From ca2b6127782ab1d6ceb403bfe0e2699e70d20cd3 Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 9 Feb 2025 13:18:10 -0800 Subject: [PATCH] give warship larger attack radius --- src/core/execution/WarshipExecution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/execution/WarshipExecution.ts b/src/core/execution/WarshipExecution.ts index 810d1ae48..9cd1d40a9 100644 --- a/src/core/execution/WarshipExecution.ts +++ b/src/core/execution/WarshipExecution.ts @@ -68,7 +68,7 @@ export class WarshipExecution implements Execution { const ships = this.mg .units(UnitType.TransportShip, UnitType.Warship, UnitType.TradeShip) .filter( - (u) => this.mg.manhattanDist(u.tile(), this.warship.tile()) < 100 + (u) => this.mg.manhattanDist(u.tile(), this.warship.tile()) < 130 ) .filter((u) => u.owner() != this.warship.owner()) .filter((u) => u != this.warship)