X-Git-Url: https://git.auder.net/?a=blobdiff_plain;f=client%2Fsrc%2Fcomponents%2FBaseGame.vue;h=9878039ee8a260c8484c3095d486b57e67acfabd;hb=691d6952114dd716ca66193a029f5e60be50888c;hp=be582950b822cf7f6e0fd35599c8fe84f202b8af;hpb=b20f4bd2d6366bb099d2f95831e67e83a61fae96;p=vchess.git diff --git a/client/src/components/BaseGame.vue b/client/src/components/BaseGame.vue index be582950..9878039e 100644 --- a/client/src/components/BaseGame.vue +++ b/client/src/components/BaseGame.vue @@ -466,7 +466,7 @@ export default { this.lastMove = smove; // Condition is "!navigate" but we mean "!this.autoplay" if (!navigate) { - IF (this.cursor < this.moves.length - 1) + if (this.cursor < this.moves.length - 1) this.moves = this.moves.slice(0, this.cursor + 1); this.moves.push(smove); }