delete num fake humans config, this is set by map json file

This commit is contained in:
evanpelle
2024-10-08 20:45:18 -07:00
parent 7235b73b6c
commit e1f7d395f2
6 changed files with 2 additions and 32 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ export class ClientGame {
this.renderer.initialize()
this.input.initialize()
this.gs.addExecution(...this.executor.spawnBots(this.gs.config().numBots()))
this.gs.addExecution(...this.executor.fakeHumanExecutions(this.gs.config().numFakeHumans(this.gameID)))
this.gs.addExecution(...this.executor.fakeHumanExecutions())
this.gs.addExecution(new WinCheckExecution(this.eventBus))
this.intervalID = setInterval(() => this.tick(), 10);