diff options
author | AnInternetTroll <lucafulger@gmail.com> | 2020-06-02 07:29:45 +0000 |
---|---|---|
committer | AnInternetTroll <lucafulger@gmail.com> | 2020-06-02 07:29:45 +0000 |
commit | 29921b0d9a5a5a719669c4772dcafa4ab3c786e1 (patch) | |
tree | 2621ffc4d3fc9659ce22fbf873c4cf463f6b872c /cogs/admin.py | |
parent | d7d868a43adb2bd3f89b4400288a397960e85769 (diff) | |
download | steve-bot-29921b0d9a5a5a719669c4772dcafa4ab3c786e1.tar steve-bot-29921b0d9a5a5a719669c4772dcafa4ab3c786e1.tar.gz steve-bot-29921b0d9a5a5a719669c4772dcafa4ab3c786e1.tar.bz2 steve-bot-29921b0d9a5a5a719669c4772dcafa4ab3c786e1.tar.lz steve-bot-29921b0d9a5a5a719669c4772dcafa4ab3c786e1.tar.xz steve-bot-29921b0d9a5a5a719669c4772dcafa4ab3c786e1.tar.zst steve-bot-29921b0d9a5a5a719669c4772dcafa4ab3c786e1.zip |
modified: .gitignore
modified: .vscode/settings.json
modified: bot.py
modified: cogs/admin.py
modified: cogs/general.py
modified: cogs/help.py
modified: cogs/player.py
modified: cogs/src.py
modified: cogs/trans.py
modified: cogs/utils.py
modified: custom_commands.json
modified: main.py
Diffstat (limited to '')
-rwxr-xr-x[-rw-r--r--] | cogs/admin.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cogs/admin.py b/cogs/admin.py index f252944..0613b5d 100644..100755 --- a/cogs/admin.py +++ b/cogs/admin.py @@ -86,6 +86,7 @@ class Admin(commands.Cog): await ctx.send(f'Some unknown error happened while trying to reload extension {ext} (check logs)') self.bot.logger.exception(f'Failed to reload extension {ext}:') + """ @commands.command() @commands.check(is_mod) async def connect(self, ctx): @@ -97,6 +98,7 @@ class Admin(commands.Cog): async def disconnect(self, ctx): await ctx.voice_client.disconnect() await ctx.send(f"Left channel {ctx.author.voice.channel.name}") + """ @commands.command() @commands.check(is_mod) |