From b1710eddca8ee60544e066e67dbceaa392f8ee24 Mon Sep 17 00:00:00 2001 From: Siphalor Date: Tue, 26 Oct 2021 16:49:53 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20wrong=20loeh=20channel=20used=20in=20hall?= =?UTF-8?q?=C3=B6hl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 0573525..ce90d66 100644 --- a/bot.py +++ b/bot.py @@ -457,7 +457,7 @@ async def halloehl_slash(ctx: SlashContext, user: discord.Member): await ctx.send("User is not connected to this guild", hidden=True) return - vc: Optional[discord.VoiceChannel] = ctx.guild.get_channel(902246980124811335) + vc: Optional[discord.VoiceChannel] = ctx.guild.get_channel(LOEH_CHANNEL_ID) if vc is None: await ctx.send("This command is not available in this guild", hidden=True) return