From 63ac49fac0792dadfb5feb562d96f54171756c38 Mon Sep 17 00:00:00 2001 From: Siphalor Date: Fri, 12 Mar 2021 21:34:46 +0100 Subject: [PATCH] Fix typo --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 3ff5a02..46e96da 100644 --- a/bot.py +++ b/bot.py @@ -530,7 +530,7 @@ async def groupvc_command(ctx: commands.Context): reason = "Create temporary vc for group " + channel.name vc = await category.create_voice_channel(channel.name + "_vc", reason=reason) await vc.edit(sync_permissions=True, reason=reason) - await vc.set_permissions(role, view_channel=True, connenct=True, reason=reason) + await vc.set_permissions(role, view_channel=True, connect=True, reason=reason) await ctx.send("Created temporary vc for this group") return