WIP: Refactor Aurora (3.0.0) #29
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ class Aurora(commands.Cog):
|
|||
"""This method automatically adds roles to users when they join the server."""
|
||||
if not await self.bot.cog_disabled_in_guild(self, member.guild):
|
||||
query = f"""SELECT moderation_id, role_id, reason FROM moderation_{member.guild.id} WHERE target_id = ? AND moderation_type = 'ADDROLE' AND expired = 0 AND resolved = 0;"""
|
||||
results = Moderation.execute(query, (member.id,))
|
||||
results = await Moderation.execute(query, (member.id,))
|
||||
for row in results:
|
||||
role = member.guild.get_role(row[1])
|
||||
reason = row[2]
|
||||
|
|
Loading…
Reference in a new issue