From d4c13ba593dc184f0a1be65f21e62dbea97f9852 Mon Sep 17 00:00:00 2001 From: Dustin Pianalto Date: Sat, 14 Dec 2019 01:42:43 -0900 Subject: [PATCH] Remove owner check for testing load/unload/reload --- geeksbot/__main__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/geeksbot/__main__.py b/geeksbot/__main__.py index 05e78af..e78f50f 100644 --- a/geeksbot/__main__.py +++ b/geeksbot/__main__.py @@ -128,7 +128,6 @@ class Geeksbot(commands.Bot): bot = Geeksbot(case_insensitive=True) -@is_me() @bot.command(hidden=True) async def load(ctx, mod=None): """Allows the owner to load extensions dynamically""" @@ -138,7 +137,6 @@ async def load(ctx, mod=None): logger.info(f"{mod} loaded") -@is_me() @bot.command(hidden=True) async def reload(ctx, mod=None): """Allows the owner to reload extensions dynamically""" @@ -154,7 +152,6 @@ async def reload(ctx, mod=None): await ctx.send(f'{mod} reloaded') -@is_me() @bot.command(hidden=True) async def unload(ctx, mod): """Allows the owner to unload extensions dynamically"""