From f785f08b70875f241eafac121d5f0bb05ed184f4 Mon Sep 17 00:00:00 2001 From: turtlebasket Date: Wed, 6 May 2020 10:53:02 -0700 Subject: [PATCH] add stuff to help page & more --- .gitignore | 4 +--- bot.py | 13 +++++++++---- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 8bf9b36..a1b85c1 100644 --- a/.gitignore +++ b/.gitignore @@ -106,7 +106,5 @@ venv.bak/ # vscode config .vscode/ -# muh token is stored as plain text ehehehehe -token.txt config.json -token.json +tokens.json \ No newline at end of file diff --git a/bot.py b/bot.py index d713e47..6ff4d3d 100644 --- a/bot.py +++ b/bot.py @@ -74,9 +74,9 @@ async def on_ready(): print("Bot started.") print("--------------------------") -@bot.command(aliases=['manual', 'commands']) +@bot.command(aliases=['manual', 'commands', 'info']) async def help(ctx): - embed = discord.Embed(title="How 2 Comrade") + embed = discord.Embed(title="Comrade: Usage & Other Info") embed.add_field( name=">>addEmote ", value= @@ -129,8 +129,13 @@ async def help(ctx): ) embed.add_field( - name="Need help or having an issue?", - value="Report an issue at: https://github.com/turtlebasket/comrade-bot/issues/new" + name="Enjoying Comrade?", + value="[Upvote Comrade on Discord Bot List!](https://top.gg/bot/592852914553487370/vote)" + ) + + embed.add_field( + name="Need help?", + value="[Report an issue](https://github.com/turtlebasket/comrade-bot/issues)" ) await ctx.send(embed=embed)