give warship larger attack radius

This commit is contained in:
Evan
2025-02-09 13:18:10 -08:00
parent b3498976fb
commit ca2b612778
+1 -1
View File
@@ -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)