From dcb3637c5bd34c44806c6aeefe5964ce12a0261f Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Sat, 21 Mar 2020 12:02:58 +0100 Subject: [PATCH] Fix autoplay mode --- client/src/components/BaseGame.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index cd71fcb6..a49c31b1 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -465,6 +465,7 @@ export default { // Sufficient condition because Board already knows which turn it is. if ( this.game.mode != "analyze" && + !navigate && !received && (this.game.score != "*" || this.cursor < this.moves.length - 1) ) { -- 2.44.0