Change & move issue reporting link

master
michael 2020-03-25 12:33:20 -07:00
parent 159958630d
commit 246114798c
1 changed files with 6 additions and 3 deletions

9
bot.py
View File

@ -52,9 +52,6 @@ async def status_loop():
await bot.change_presence(activity=discord.Game(name='Proletarian Uprising 2: Electric Boogaloo'.format(len(bot.guilds)))) await bot.change_presence(activity=discord.Game(name='Proletarian Uprising 2: Electric Boogaloo'.format(len(bot.guilds))))
await asyncio.sleep(STATUS_LOOP) await asyncio.sleep(STATUS_LOOP)
await bot.change_presence(activity=discord.Game(name='Want to contribute? Have an issue? https://github.com/turtlebasket/comrade-bot'))
await asyncio.sleep(STATUS_LOOP)
@bot.event @bot.event
async def on_ready(): async def on_ready():
# await bot.change_presence(activity=discord.Game(name='{} servers | >>help'.format(len(bot.guilds)))) # await bot.change_presence(activity=discord.Game(name='{} servers | >>help'.format(len(bot.guilds))))
@ -115,6 +112,12 @@ async def help(ctx):
name=">>ping", name=">>ping",
value="Get bot latency." value="Get bot latency."
) )
embed.add_field(
name="Need help or having an issue?",
value="Report an issue at: https://github.com/turtlebasket/comrade-bot/issues/new"
)
await ctx.send(embed=embed) await ctx.send(embed=embed)