1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Added the ability to remove a role from the server

This commit is contained in:
Phxntxm 2016-07-31 15:03:34 -05:00
parent db7124503b
commit 32c8db7d38

View file

@ -25,7 +25,7 @@ class Roles:
await self.bot.say("Which role would you like to remove from the server? Here is a list of this server's roles:"
"```\n{}```".format("\n".join([r.name for r in server_roles])))
check = lambda m: discord.utils.get(server_roles,name=m.content) > 0
check = lambda m: discord.utils.get(server_roles,name=m.content)
msg = await self.bot.wait_for_message(author=ctx.message.author,channel=ctx.message.channel,check=check)
if msg is None:
await self.bot.say("You took too long. I'm impatient, don't make me wait")