diff --git a/modules/maimai/__init__.py b/modules/maimai/__init__.py index 220ac4b8..be0b0b09 100644 --- a/modules/maimai/__init__.py +++ b/modules/maimai/__init__.py @@ -175,7 +175,7 @@ async def _(msg: Bot.MessageSession, id_or_alias: str, username: str = None): res = msg.locale.t("maimai.message.song.prompt") + "\n" for sid in sorted(sid_list, key=int): s = (await total_list.get()).by_id(sid) - res += f"{s['id']}. {s['title']}{' (DX)' if s['type'] == 'DX' else ''}\n" + res += f"{s['id']} {s['title']}{' (DX)' if s['type'] == 'DX' else ''}\n" await msg.finish(res.strip()) else: sid = str(sid_list[0])