Skip to content

Commit

Permalink
Merge pull request #10 from PyBotDevs/add-missing-command-from-help
Browse files Browse the repository at this point in the history
Add missing `/suggest` command in `/help`
  • Loading branch information
notsniped authored Jun 17, 2023
2 parents db11b59 + ea0584d commit 4aa7139
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ async def on_ready():
description="View a list of all available commands."
)
async def help(ctx: ApplicationContext):
localembed = discord.Embed(title="Command Help List", description="The global bot prefix is `/`\n\n**/truth**: Gives you a truth type question\n**/dare**: Gives you a dare type question")
localembed = discord.Embed(title="Command Help List", description="The global bot prefix is `/`\n\n**/truth**: Gives you a truth type question\n**/dare**: Gives you a dare type question\n**/suggest**: Suggest a new feature, or truth or dare question for the bot.")
localembed.set_footer(text=f"Requested by {ctx.author.name}")
await ctx.respond(embed=localembed)

Expand Down

0 comments on commit 4aa7139

Please sign in to comment.