From f9a92e4528ffd38e8de1b86949340529428f5d01 Mon Sep 17 00:00:00 2001 From: Clemens Tolboom Date: Tue, 7 Jun 2016 14:16:53 +0200 Subject: [PATCH] Fix code review issues #286 --- bot.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.user.js b/bot.user.js index a3b87181..85b2850a 100644 --- a/bot.user.js +++ b/bot.user.js @@ -1239,7 +1239,7 @@ var userInterface = window.userInterface = (function() { for (var i = 0; i < bot.scores.length && i < 10; i++) { oContent.push(i + 1 + '. ' + bot.scores[i].score + - ' in ' + Math.round(bot.scores[i].duration/1000) + 's'); + ' in ' + Math.round(bot.scores[i].duration / 1000) + 's'); } userInterface.overlays.statsOverlay.innerHTML = oContent.join('
');