use mini a star for all pathfinding

This commit is contained in:
evanpelle
2024-12-03 15:06:55 -08:00
parent 4edd66dc1f
commit e6fa108eaa
7 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ export class NukeExecution implements Execution {
init(mg: MutableGame, ticks: number): void {
this.mg = mg
this.pathFinder = PathFinder.Serial(mg, 10_000, () => true)
this.pathFinder = PathFinder.Mini(mg, 10_000, () => true)
this.player = mg.player(this.senderID)
this.dst = this.mg.tile(this.cell)
}