From 02be8a41b633c0a80a5d71ba715db36ee721e70a Mon Sep 17 00:00:00 2001 From: yukirij Date: Fri, 18 Oct 2024 01:10:41 -0700 Subject: [PATCH] Fix load url for game. --- www/js/scene.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/scene.js b/www/js/scene.js index 8b52cd2..aecb191 100644 --- a/www/js/scene.js +++ b/www/js/scene.js @@ -53,7 +53,7 @@ class SceneManager { case "game": { if(parts[2]) { let token = UNPACK.base64(parts[2] + "="); - this.load(SCENES.GameLoad, { + this.load(SCENES.Game, { token:token, mode:INTERFACE.Mode.Review, });