From aa35881a9f54ebb593f87710bf90c1ce48303cea Mon Sep 17 00:00:00 2001 From: yukirij Date: Wed, 25 Dec 2024 12:37:15 -0800 Subject: [PATCH] Add guide to offline page. --- www/js/scene.js | 1 + 1 file changed, 1 insertion(+) diff --git a/www/js/scene.js b/www/js/scene.js index 233d110..7b3590b 100644 --- a/www/js/scene.js +++ b/www/js/scene.js @@ -127,6 +127,7 @@ const SCENES = { UI.nav([ UI.button(LANG("reconnect"), () => { RECONNECT(); }), UI.button(LANG("practice"), () => { SCENE.load(SCENES.GamePractice); }), + UI.button(LANG("guide"), () => { SCENE.load(SCENES.Guide); }), ], []); return true; }