Fix wrong loeh channel used in hallöhl

This commit is contained in:
2021-10-26 16:49:53 +02:00
parent 68b001de01
commit b1710eddca

2
bot.py
View File

@@ -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) await ctx.send("User is not connected to this guild", hidden=True)
return 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: if vc is None:
await ctx.send("This command is not available in this guild", hidden=True) await ctx.send("This command is not available in this guild", hidden=True)
return return