Skip to content

Commit

Permalink
fix(api): Include missed file
Browse files Browse the repository at this point in the history
  • Loading branch information
jcowman2 committed Sep 1, 2018
1 parent 353ad7c commit 103e3ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game-instance.ts
Expand Up @@ -19,7 +19,7 @@ export default class GameInstance {
}

public cycle(): GameInstance {
const newGame = new GameInstance(this.options.optionOverrides);
const newGame = new GameInstance(this.options.overrides);
newGame.events = this.events.cycle(newGame);
newGame.agents = this.agents.cycle(newGame);
newGame.output = this.output.cycle(newGame);
Expand Down

0 comments on commit 103e3ac

Please sign in to comment.