From 9817790b9b92be155e5d5a428f078ba9a1f39a5b Mon Sep 17 00:00:00 2001 From: yukirij Date: Wed, 5 Feb 2025 14:10:52 -0800 Subject: [PATCH] Improve menu item. --- www/js/ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/ui.js b/www/js/ui.js index 1444894..92961c7 100644 --- a/www/js/ui.js +++ b/www/js/ui.js @@ -230,7 +230,7 @@ const UI = { // Top Buttons buttons_top.push(UI.button("Pieces", () => { SCENE.load(SCENES.Guide); }, page == "guide_pieces")); - buttons_top.push(UI.button("Dropping", () => { SCENE.load(SCENES.Guide, "drop"); }, page == "guide_drop")); + buttons_top.push(UI.button("Drops", () => { SCENE.load(SCENES.Guide, "drop"); }, page == "guide_drop")); buttons_top.push(UI.button("Promotion", () => { SCENE.load(SCENES.Guide, "promote"); }, page == "guide_promote")); buttons_top.push(UI.button("Check", () => { SCENE.load(SCENES.Guide, "check"); }, page == "guide_check")); buttons_top.push(UI.button("Checkmate", () => { SCENE.load(SCENES.Guide, "checkmate"); }, page == "guide_checkmate"));