X-Git-Url: https://git.auder.net/?p=vchess.git;a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBaseGame.vue;h=608a98d464ebff3410336c9b7ff3dc66f6176d4d;hp=1ea862fbe05264fd7de870a3c18984ea41c44d94;hb=3837d4f7885a3c3cdb468da2f3fa3fa1e5a1415a;hpb=c547fbfbf65659b98f4f1bfba4718c685ec281f8 diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index 1ea862fb..608a98d4 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -255,7 +255,7 @@ export default { else this.moves = this.moves.slice(0,this.cursor).concat([move]); } - if (this.game.mode != "analyze") + if (!navigate && this.game.mode != "analyze") this.$emit("newmove", move); //post-processing (e.g. computer play) // Is opponent in check? this.incheck = this.vr.getCheckSquares(this.vr.turn);