Some more traces...
authorBenjamin Auder <benjamin.auder@somewhere>
Mon, 6 Apr 2020 13:20:48 +0000 (15:20 +0200)
committerBenjamin Auder <benjamin.auder@somewhere>
Mon, 6 Apr 2020 13:20:48 +0000 (15:20 +0200)
client/src/components/BaseGame.vue

index 228d9c4..be58295 100644 (file)
@@ -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);
           }
@@ -490,6 +490,7 @@ export default {
         let self = this;
         const initurn = this.vr.turn;
         (function executeMove() {
+console.log("execute move " + move.length);
           const smove = move[moveIdx++];
           // NOTE: condition "smove.start.x >= 0" required for Dynamo,
           // because second move may be empty.