Skip to content

Commit 4aa7139

Browse files
authored
Merge pull request #10 from PyBotDevs/add-missing-command-from-help
Add missing `/suggest` command in `/help`
2 parents db11b59 + ea0584d commit 4aa7139

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ async def on_ready():
3434
description="View a list of all available commands."
3535
)
3636
async def help(ctx: ApplicationContext):
37-
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")
37+
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.")
3838
localembed.set_footer(text=f"Requested by {ctx.author.name}")
3939
await ctx.respond(embed=localembed)
4040

0 commit comments

Comments
 (0)