From ba9c7dce5a4d0d23c0ed4287fa7c51a1583067d2 Mon Sep 17 00:00:00 2001 From: meriadec Date: Wed, 7 Oct 2015 19:24:57 +0200 Subject: [PATCH] fix(tick): 500ms is good --- components/pages/Game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pages/Game.js b/components/pages/Game.js index bc253f2..f5dd0a9 100644 --- a/components/pages/Game.js +++ b/components/pages/Game.js @@ -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; }