Skip to content

Commit 5b8a05f

Browse files
committed
Prettier
1 parent 64aefbf commit 5b8a05f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/core/game/PlayerImpl.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1155,7 +1155,8 @@ export class PlayerImpl implements Player {
11551155
const bestSilo = findClosestBy(
11561156
this.units(UnitType.MissileSilo),
11571157
(silo) => mg.manhattanDist(silo.tile(), tile),
1158-
(silo) => silo.isActive() && !silo.isInCooldown() && !silo.isUnderConstruction(),
1158+
(silo) =>
1159+
silo.isActive() && !silo.isInCooldown() && !silo.isUnderConstruction(),
11591160
);
11601161

11611162
return bestSilo?.tile() ?? false;

0 commit comments

Comments
 (0)