From ebb8c57ebdeaeb0460f4301e863fb3cb9f47bd35 Mon Sep 17 00:00:00 2001 From: Siphalor Date: Mon, 25 Oct 2021 20:15:34 +0200 Subject: [PATCH] Fix wrong slash_guild_ids --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 1213451..8433195 100644 --- a/bot.py +++ b/bot.py @@ -285,7 +285,7 @@ async def config_prefix_command(ctx: commands.Context, cmd: str = '', key: str = # ------------------- The slashy way of life ------------------- # -slash_guild_ids = [ 785415257308004422 ] +slash_guild_ids = None config_choices = [create_choice(name=entry[1][1], value=entry[0]) for entry in config_meta.items() if entry[1][0]] config_option = create_option("config_key", "A key identifying the config entry to target", str, True, config_choices)