Skip to content

Commit

Permalink
fix(tick): 500ms is good
Browse files Browse the repository at this point in the history
  • Loading branch information
meriadec committed Oct 7, 2015
1 parent a78676d commit ba9c7dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/pages/Game.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class Game extends React.Component {

// start interval
this.updateStats();
this._gameTick = setInterval(this.updateStats, 2.5e2);
this._gameTick = setInterval(this.updateStats, 5e2);
this._hasGameTick = true;
}

Expand Down

0 comments on commit ba9c7dc

Please sign in to comment.