fix: Update error message for owner-only command to include link to web dashboard

This commit is contained in:
Slipstream 2025-05-26 15:31:13 -06:00
parent cab07d09db
commit 0571033ca2
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -119,7 +119,7 @@ class BotAppearanceCog(commands.Cog):
if isinstance(error, commands.MissingPermissions):
await ctx.send("You don't have the required permissions (Administrator) to use this command.")
elif isinstance(error, commands.NotOwner):
await ctx.send("This command can only be used by the bot owner. If you wish to customize your bot's appearance, please set up a custom bot on the web dashboard.")
await ctx.send("This command can only be used by the bot owner. If you wish to customize your bot's appearance, please set up a custom bot on the [web dashboard.](https://slipstreamm.dev/dashboard/)")
elif isinstance(error, commands.MissingRequiredArgument):
await ctx.send(f"Missing required argument: `{error.param.name}`. Please check the command's help.")
else: