From 86311aba96dd23ab0787f501e8d21bb42ea37fc7 Mon Sep 17 00:00:00 2001 From: Myned Date: Mon, 2 Oct 2017 15:24:57 -0400 Subject: [PATCH] Placeholder for restart bot command --- src/main/restart.py | 0 src/main/run.py | 5 +++++ 2 files changed, 5 insertions(+) create mode 100644 src/main/restart.py diff --git a/src/main/restart.py b/src/main/restart.py new file mode 100644 index 0000000..e69de29 diff --git a/src/main/run.py b/src/main/run.py index e7eb4c2..8999a08 100644 --- a/src/main/run.py +++ b/src/main/run.py @@ -44,6 +44,11 @@ async def die(ctx): await ctx.send(exc.base) 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 @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()