From e9e1ce7864b3282a3398b3c2dfca9965d0c7e3ca Mon Sep 17 00:00:00 2001 From: Uwe Pfeifer Date: Sat, 4 Mar 2023 14:38:17 +0100 Subject: [PATCH] Added jishaku bot utilities for discord.py rewrite bots into requirements.txt . This can be used for syncing the bot commands later. --- pybot-f.py | 4 ++++ requirements.txt | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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