From 2f6e0cc5027f261ce6c3c472f755d8d7d892b632 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Thu, 27 Dec 2018 23:42:23 +0100 Subject: [PATCH] Fix seek game --- public/javascripts/components/game.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/javascripts/components/game.js b/public/javascripts/components/game.js index 58fd365a..54ee1282 100644 --- a/public/javascripts/components/game.js +++ b/public/javascripts/components/game.js @@ -1266,7 +1266,7 @@ Vue.component('my-game', { }, clickGameSeek: function(e) { this.getRidOfTooltip(e.currentTarget); - if (this.mode == "human") + if (this.mode == "human" && this.score == "*") return; //no newgame while playing if (this.seek) { -- 2.44.0