From 5e477328708cbc344e644e60f0bd0ca8cdec5697 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Tue, 16 Mar 2021 12:38:15 +0100 Subject: [PATCH] Fix challenge through URL for tournament --- client/src/views/Hall.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/src/views/Hall.vue b/client/src/views/Hall.vue index c91e1270..28d59c98 100644 --- a/client/src/views/Hall.vue +++ b/client/src/views/Hall.vue @@ -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"] ); -- 2.44.0