Initalizes robots during initialization(), prevents weird behaviour.

This commit is contained in:
Sacha Ligthert 2023-12-05 23:29:45 +01:00
parent a349d221f1
commit 063cab6521

View File

@ -71,6 +71,8 @@ func initialize() (Game, error) {
gameover: 0,
}
game.initRobots()
return game, err
}