From 32c8db7d38cda7fa4a64c9411995c8b310bfae16 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Sun, 31 Jul 2016 15:03:34 -0500 Subject: [PATCH] Added the ability to remove a role from the server --- cogs/roles.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/roles.py b/cogs/roles.py index 65e94c7..0fd7c29 100644 --- a/cogs/roles.py +++ b/cogs/roles.py @@ -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")