src/core/execution/PlayerExecution.ts

This commit is contained in:
Scott Anderson
2025-05-16 16:42:27 -04:00
parent 29dca6a88f
commit eb89e5c348
+1 -1
View File
@@ -226,7 +226,7 @@ export class PlayerExecution implements Execution {
}
const firstTile = cluster.values().next().value;
const filter = (_, t: TileRef): boolean =>
const filter = (_: unknown, t: TileRef): boolean =>
this.mg?.ownerID(t) === this.player?.smallID();
const tiles = this.mg.bfs(firstTile, filter);