From 0b5240473197e4c4e4336e6f67456258ec416f5f Mon Sep 17 00:00:00 2001 From: yuki Date: Tue, 7 Oct 2025 03:36:26 -0300 Subject: [PATCH] modify setfm error msg --- commands/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/config.py b/commands/config.py index 968892c..ea4bd18 100644 --- a/commands/config.py +++ b/commands/config.py @@ -8,7 +8,8 @@ def setup(bot: bot.Bot): @bot.slash_command(name="setfm", description="Sets your Last.fm username.") async def setfm(ctx: nerimity.Context, username: str = None): if not username: - await ctx.send(u.error_msg("Please provide your Last.fm username.")) + await ctx.send(u.error_msg("Please provide your Last.fm username.\n\ + usage: `/fm `")) else: try: await bot.set_lastfm(ctx.author.id, username)