1
0
Fork 0
mirror of synced 2024-06-03 11:14:33 +12:00

removed the message sent, as we're now using typing

This commit is contained in:
phxntxm 2017-03-08 14:50:29 -06:00
parent 4e09b7a737
commit fa8d03c6c2
2 changed files with 4 additions and 6 deletions

View file

@ -97,8 +97,6 @@ class Overwatch:
bt = bt.replace("#", "-") bt = bt.replace("#", "-")
key = str(ctx.message.author.id) key = str(ctx.message.author.id)
# This API sometimes takes a while to look up information, so send a message saying we're processing
await ctx.send("Looking up your profile information....")
# All we're doing here is ensuring that the status is 200 when looking up someone's general information # All we're doing here is ensuring that the status is 200 when looking up someone's general information
# If it's not, let them know exactly how to format their tag # If it's not, let them know exactly how to format their tag
url = BASE_URL + "{}/stats".format(bt) url = BASE_URL + "{}/stats".format(bt)

View file

@ -22,7 +22,7 @@ class Roles:
EXAMPLE: !role EXAMPLE: !role
RESULT: A list of all your roles""" RESULT: A list of all your roles"""
# 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
server_roles = [role.name for role in ctx.message.guild.roles if not role.is_everyone] server_roles = [role.name for role in ctx.message.guild.roles if not role.is_default()]
await ctx.send("Your server's roles are: ```\n{}```".format("\n".join(server_roles))) await ctx.send("Your server's roles are: ```\n{}```".format("\n".join(server_roles)))
@role.command(name='remove', no_pm=True) @role.command(name='remove', no_pm=True)
@ -38,7 +38,7 @@ class Roles:
return return
check = lambda m: m.author == ctx.message.author and m.channel == ctx.message.channel check = lambda m: m.author == ctx.message.author and m.channel == ctx.message.channel
server_roles = [role for role in ctx.message.guild.roles if not role.is_everyone] server_roles = [role for role in ctx.message.guild.roles if not role.is_default()]
# First get the list of all mentioned users # First get the list of all mentioned users
members = ctx.message.mentions members = ctx.message.mentions
# If no users are mentioned, ask the author for a list of the members they want to remove the role from # If no users are mentioned, ask the author for a list of the members they want to remove the role from
@ -102,7 +102,7 @@ class Roles:
check = lambda m: m.author == ctx.message.author and m.channel == ctx.message.channel check = lambda m: m.author == ctx.message.author and m.channel == ctx.message.channel
# This is exactly the same as removing roles, except we call add_roles instead. # This is exactly the same as removing roles, except we call add_roles instead.
server_roles = [role for role in ctx.message.guild.roles if not role.is_everyone] server_roles = [role for role in ctx.message.guild.roles if not role.is_default()]
members = ctx.message.mentions members = ctx.message.mentions
if len(members) == 0: if len(members) == 0:
await ctx.send("Please provide the list of members you want to add a role to") await ctx.send("Please provide the list of members you want to add a role to")
@ -155,7 +155,7 @@ class Roles:
# If no role was given, get the current roles on the server and ask which ones they'd like to remove # If no role was given, get the current roles on the server and ask which ones they'd like to remove
if role is None: if role is None:
server_roles = [role for role in ctx.message.guild.roles if not role.is_everyone] server_roles = [role for role in ctx.message.guild.roles if not role.is_default()]
await ctx.send( await ctx.send(
"Which role would you like to remove from the server? Here is a list of this server's roles:" "Which role would you like to remove from the server? Here is a list of this server's roles:"