From 4583d95b06071b637cf6794f332b099d30b9a5c3 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Tue, 22 Apr 2025 17:36:13 -0700 Subject: add support for mus_plus --- site/src/components/TitleBar.tsx | 5 ++++- site/src/utils.ts | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'site/src') diff --git a/site/src/components/TitleBar.tsx b/site/src/components/TitleBar.tsx index 3018357..937fcf7 100644 --- a/site/src/components/TitleBar.tsx +++ b/site/src/components/TitleBar.tsx @@ -86,7 +86,10 @@ const TitleBar: React.FC = () => { }, { name: "COMMUNITY", - games: [{ id: "wacca_plus", title: "WACCA+" }], + games: [ + { id: "wacca_plus", title: "WACCA PLUS" }, + { id: "museca_plus", title: "MÚSECA PLUS" }, + ], }, ]; diff --git a/site/src/utils.ts b/site/src/utils.ts index 18ea80c..4fe3493 100644 --- a/site/src/utils.ts +++ b/site/src/utils.ts @@ -17,7 +17,8 @@ export const getGameTitle = (gameId: string) => { if (lowerCaseGameId.startsWith("popn_music")) return "pop'n music"; if (lowerCaseGameId.startsWith("music_diver")) return "MUSIC DIVER"; if (lowerCaseGameId.startsWith("taiko")) return "Taiko no Tatsujin"; - if (lowerCaseGameId.startsWith("wacca")) return "WACCA+"; + if (lowerCaseGameId.startsWith("wacca")) return "WACCA PLUS"; + if (lowerCaseGameId.startsWith("museca")) return "MÚSECA PLUS"; return gameId.toUpperCase(); -- cgit v1.2.3