1
0
Fork 0
mirror of synced 2024-05-19 20:12:30 +12:00

Correct reference to roles

This commit is contained in:
phxntxm 2018-10-05 10:13:10 -05:00
parent 565a7361e6
commit 2395aba4f7

View file

@ -71,7 +71,7 @@ class Roles:
# Don't include the colour roles # Don't include the colour roles
colour_role = re.compile("Bonfire #.+") colour_role = re.compile("Bonfire #.+")
# Simply get a list of all roles in this server and send them # Simply get a list of all roles in this server and send them
entries = [r.name for r in ctx.guild.role_hierarchy[:-1] if not colour_role.match(r.name)] entries = [r.name for r in ctx.guild.roles[1:] if not colour_role.match(r.name)]
if len(entries) == 0: if len(entries) == 0:
await ctx.send("You do not have any roles setup on this server, other than the default role!") await ctx.send("You do not have any roles setup on this server, other than the default role!")
return return