diff --git a/bemani/frontend/museca/endpoints.py b/bemani/frontend/museca/endpoints.py index ba80fdf..6aff293 100644 --- a/bemani/frontend/museca/endpoints.py +++ b/bemani/frontend/museca/endpoints.py @@ -101,7 +101,7 @@ def viewnetworkrecords() -> Response: frontend = MusecaFrontend(g.data, g.config, g.cache) network_records = frontend.get_network_records() versions = {version: name for (game, version, name) in frontend.all_games()} - versions[0] = 'CS and Licenses' + versions[10002] = 'MÚSECA PLUS' return render_react( 'Global MÚSECA Records', @@ -139,6 +139,7 @@ def viewrecords(userid: UserID) -> Response: if info is None: abort(404) versions = {version: name for (game, version, name) in frontend.all_games()} + versions[10002] = 'MÚSECA PLUS' # Hard code this version name for modpack songs return render_react( f'{info["name"]}\'s MÚSECA Records', diff --git a/bemani/utils/read.py b/bemani/utils/read.py index d705d35..7de8618 100644 --- a/bemani/utils/read.py +++ b/bemani/utils/read.py @@ -2852,7 +2852,7 @@ class ImportMuseca(ImportBase): elif actual_version == VersionConstants.MUSECA_1_PLUS + DBConstants.OMNIMIX_VERSION_BUMP: self.charts = [0, 1, 2, 3] else: - raise Exception("Unsupported Museca version, expected one of the following: 1, 1+1/2!") + raise Exception("Unsupported Museca version, expected one of the following: 1, 1+1/2, plus!") super().__init__(config, GameConstants.MUSECA, actual_version, no_combine, update)