diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-05-19 16:31:57 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-05-19 16:31:57 -0700 |
| commit | 445d5c14eff9beb62f2a20ac5234fbdf40c3c890 (patch) | |
| tree | 48f19f96629968b7f2c26e1ffd611d4ae448e91e /site/src/utils.ts | |
| parent | f342dca5bd5e239362768ec80ca478ee3cee608b (diff) | |
frontend: add WMMT, add new section for non-rhythm
Diffstat (limited to 'site/src/utils.ts')
| -rw-r--r-- | site/src/utils.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/site/src/utils.ts b/site/src/utils.ts index c6f4ba6..47652da 100644 --- a/site/src/utils.ts +++ b/site/src/utils.ts @@ -22,7 +22,11 @@ export const getGameTitle = (gameId: string) => { if (lowerCaseGameId.startsWith("reflec_beat") || lowerCaseGameId.startsWith("rb_deluxe")) return "REFLEC BEAT DELUXE PLUS"; if (lowerCaseGameId.startsWith("dance_rush")) return "DANCERUSH"; if(lowerCaseGameId.startsWith("dance_around")) return "DANCE aROUND"; - if(lowerCaseGameId.startsWith("polaris_chord")) return "POLARIS CHORD/ポラリスコード" + if(lowerCaseGameId.startsWith("polaris_chord")) return "POLARIS CHORD/ポラリスコード"; + if(lowerCaseGameId.startsWith("wmmt")) return "WANGAN MIDNIGHT MAXIMUM TUNE"; + if(lowerCaseGameId.startsWith("wangan_maxi_jp")) return "WANGAN MIDNIGHT MAXIMUM TUNE (JAPAN)"; + if(lowerCaseGameId.startsWith("wangan_maxi_na")) return "WANGAN MIDNIGHT MAXIMUM TUNE (NORTH AMERICA)"; + if(lowerCaseGameId.startsWith("wangan_maxi_asia_oce")) return "WANGAN MIDNIGHT MAXIMUM TUNE (ASIA/OCEANIA)"; return gameId.toUpperCase(); |
