1
0
Fork 0
mirror of synced 2024-06-16 17:44:33 +12:00

Add a command to control colours used

This commit is contained in:
phxntxm 2018-01-01 18:09:10 -06:00
parent fb26b7ffcf
commit a6d0d507d9

View file

@ -43,7 +43,7 @@ class Roles:
# The colour roles they currently have, we need to remove them if they want a new colour # The colour roles they currently have, we need to remove them if they want a new colour
old_roles = [r for r in ctx.author.roles if re.match(r'Bonfire #[0-9a-zA-Z]+', r.name)] old_roles = [r for r in ctx.author.roles if re.match(r'Bonfire #[0-9a-zA-Z]+', r.name)]
if old_roles: if old_roles:
await ctx.author.remove_roles(old_roles) await ctx.author.remove_roles(*old_roles)
# If the role doesn't exist, we need to create it # If the role doesn't exist, we need to create it
if not role: if not role: