From ce74bbe1382542e6351265a2ce28750dd14ec12b Mon Sep 17 00:00:00 2001 From: Ave Ozkal Date: Tue, 21 Apr 2020 16:17:44 +0300 Subject: [PATCH] verification: use the proper participant role --- cogs/verification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/verification.py b/cogs/verification.py index 3618d9d..9733cff 100644 --- a/cogs/verification.py +++ b/cogs/verification.py @@ -138,7 +138,7 @@ class Verification(Cog): return await chan.send(snark) # Get the role we will give in case of success - success_role = guild.get_role(config.participant_role) + success_role = guild.get_role(config.named_roles["participant"]) # Get a list of stuff we'll allow and will consider close allowed_names = [f"@{full_name}", full_name, str(member.id)]