add stuff to help page & more

master
michael 2020-05-06 10:53:02 -07:00
parent 18fe8feec5
commit f785f08b70
2 changed files with 10 additions and 7 deletions

4
.gitignore vendored
View File

@ -106,7 +106,5 @@ venv.bak/
# vscode config # vscode config
.vscode/ .vscode/
# muh token is stored as plain text ehehehehe
token.txt
config.json config.json
token.json tokens.json

13
bot.py
View File

@ -74,9 +74,9 @@ async def on_ready():
print("Bot started.") print("Bot started.")
print("--------------------------") print("--------------------------")
@bot.command(aliases=['manual', 'commands']) @bot.command(aliases=['manual', 'commands', 'info'])
async def help(ctx): async def help(ctx):
embed = discord.Embed(title="How 2 Comrade") embed = discord.Embed(title="Comrade: Usage & Other Info")
embed.add_field( embed.add_field(
name=">>addEmote <emoji name>", name=">>addEmote <emoji name>",
value= value=
@ -129,8 +129,13 @@ async def help(ctx):
) )
embed.add_field( embed.add_field(
name="Need help or having an issue?", name="Enjoying Comrade?",
value="Report an issue at: https://github.com/turtlebasket/comrade-bot/issues/new" 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) await ctx.send(embed=embed)