Fix challenge through URL for tournament
[vchess.git] / client / src / views / Hall.vue
index 4708bcf..28d59c9 100644 (file)
@@ -326,9 +326,10 @@ export default {
               cadence: this.$route.query["cadence"],
               // Tournament: no randomness (TODO: for now at least)
               randomness: 0,
-              memorize: false
+              memorize: true //TODO...
             };
-            this.issueNewChallenge();
+            window.doClick("modalNewgame");
+            //this.issueNewChallenge(); //NOTE: doesn't work yet.
           },
           this.$route.query["variant"]
         );
@@ -873,10 +874,6 @@ export default {
             let newGame = game;
             newGame.type = this.classifyObject(game);
             newGame.vname = this.getVname(game.vid);
-            
-
-console.log(newGame.vname);
-console.log(game.vid);
             if (!game.score)
               // New game from Hall
               newGame.score = "*";