Fix load url for game.

This commit is contained in:
yukirij 2024-10-18 01:10:41 -07:00
parent e5377cd64a
commit 02be8a41b6

View File

@ -53,7 +53,7 @@ class SceneManager {
case "game": { case "game": {
if(parts[2]) { if(parts[2]) {
let token = UNPACK.base64(parts[2] + "="); let token = UNPACK.base64(parts[2] + "=");
this.load(SCENES.GameLoad, { this.load(SCENES.Game, {
token:token, token:token,
mode:INTERFACE.Mode.Review, mode:INTERFACE.Mode.Review,
}); });