Fix Client.remove_roles to actually remove roles.

This commit is contained in:
Rapptz 2016-01-10 03:19:41 -05:00
parent 50c83b5a3c
commit 2c31c466b2

View File

@ -2121,9 +2121,12 @@ class Client:
"""
new_roles = [x.id for x in member.roles]
remove = []
for index, role in enumerate(roles):
if role.id in new_roles:
for role in roles:
try:
index = new_roles.index(role.id)
remove.append(index)
except ValueError:
continue
for index in reversed(remove):
del new_roles[index]