made boats larger, same color as owner

This commit is contained in:
evanpelle
2024-08-19 15:56:59 -07:00
parent e92dc8ba36
commit 95133007c2
4 changed files with 33 additions and 8 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ export class BoatAttackExecution implements Execution {
return
}
this.aStarPre = new AStar(this.src, this.dst)
this.aStarPre.compute(10000)
this.aStarPre.compute(10)
this.path = this.aStarPre.reconstructPath()
if (this.path != null) {
console.log(`got path ${this.path.map(t => t.cell().toString())}`)