From 4cf4da3633fb9b162e6d5682ac4835b7e3f9af7b Mon Sep 17 00:00:00 2001 From: = <=> Date: Sun, 6 Apr 2025 11:12:27 +0700 Subject: [PATCH] Help command additions --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 34dca10..2712f8a 100644 --- a/main.py +++ b/main.py @@ -47,7 +47,7 @@ async def help(ctx: nextcord.Message): embed = nextcord.Embed(title="Help") print(client.commands) for command in client.commands: - embed.add_field(name=command.name, value=f"Arguments: {command.usage or "no arguments provided"} \nDescription: {command.description or "No command description"}") + embed.add_field(name=command.name, value=f"Arguments: {command.usage} \nDescription: {command.description}") await ctx.reply(embed=embed) @client.command(description="Check how fast the bot will reply to you.", help="evil")