Archived
1
0
Fork 0

remove dot

This commit is contained in:
多羅狼 2023-06-21 00:22:24 +08:00 committed by GitHub
parent 6be47e179a
commit 1ebee48c0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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])