1
0
Fork 0
mirror of https://github.com/myned/modufur.git synced 2024-11-01 21:02:38 +00:00

Placeholder for restart bot command

This commit is contained in:
Myned 2017-10-02 15:24:57 -04:00
parent 832acbba81
commit 86311aba96
2 changed files with 5 additions and 0 deletions

0
src/main/restart.py Normal file
View file

View file

@ -44,6 +44,11 @@ async def die(ctx):
await ctx.send(exc.base) await ctx.send(exc.base)
traceback.print_exc(limit=1) traceback.print_exc(limit=1)
@bot.command(aliases=['res', 'r'])
@commands.is_owner()
async def restart(self, ctx):
pass
# Invite bot to bot owner's server # Invite bot to bot owner's server
@bot.command(name=',invite', aliases=[',inv', ',link'], brief='Invite the bot', description='BOT OWNER ONLY\nInvite the bot to a server (Requires admin)', hidden=True) @bot.command(name=',invite', aliases=[',inv', ',link'], brief='Invite the bot', description='BOT OWNER ONLY\nInvite the bot to a server (Requires admin)', hidden=True)
@commands.is_owner() @commands.is_owner()