diff --git a/pybot-f.py b/pybot-f.py index 626af43..91c20e2 100644 --- a/pybot-f.py +++ b/pybot-f.py @@ -82,8 +82,12 @@ async def sync(ctx: commands.Context, guilds: commands.Greedy[discord.Object], # startup loading extensions ... +# Note: jishaku is always loaded. It's one of the requirements. async def scanext(): print("Loading extensions:") + await bot.load_extension('jishaku') + print("Loaded: jishaku (bot utilities)") + for filename in os.listdir("./ext"): if filename.endswith(".py"): await bot.load_extension(f"ext.{filename[:-3]}") diff --git a/requirements.txt b/requirements.txt index 94260ec..dd6780a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ -git+https://github.com/Rapptz/discord.py#egg=discord.py[voice] \ No newline at end of file +git+https://github.com/Rapptz/discord.py#egg=discord.py[voice] +git+https://gitlab.com/Gorialis/jishaku@master \ No newline at end of file