create game hash

This commit is contained in:
evanpelle
2024-08-16 15:24:01 -07:00
parent 9a64a83b43
commit a60daed8ef
2 changed files with 13 additions and 6 deletions
-2
View File
@@ -35,7 +35,6 @@ export class BotExecution implements Execution {
return
}
if (ticks % this.attackRate == 0) {
if (this.neighborsTerra) {
for (const b of this.bot.borderTiles()) {
@@ -55,7 +54,6 @@ export class BotExecution implements Execution {
}
const toAttack = ns[this.random.nextInt(0, ns.length)]
this.sendAttack(toAttack)
}
}