From f3ec71d6dd48d3b8c34de0bfb083ad53e44e947c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Sat, 20 Mar 2021 20:59:10 +0100 Subject: [PATCH] MAPG-203 fix condition in game.js --- public/static/js/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/static/js/game.js b/public/static/js/game.js index 7f1016f..3e7ec18 100644 --- a/public/static/js/game.js +++ b/public/static/js/game.js @@ -520,7 +520,7 @@ scoreInfo.children[1].style.display = 'block'; document.getElementById('showSummaryButton').style.display = null; - if (Game.multi.owner) { + if (!room || Game.multi.owner) { document.getElementById('startNewGameButton').style.display = 'block'; }