1
0
Fork 0
mirror of synced 2024-06-26 10:10:44 +12:00

Corrected the filter so that not every single member was changed

This commit is contained in:
phxntxm 2016-09-28 21:03:12 -05:00
parent 891a661d83
commit fd21bf5f08

View file

@ -101,7 +101,7 @@ class Overwatch:
# Battletags are normally provided like name#id
# However the API needs this to be a -, so repliace # with - if it exists
bt = bt.replace("#", "-")
r_filter = {'member_id', ctx.message.author.id}
r_filter = {'member_id': ctx.message.author.id}
# This API sometimes takes a while to look up information, so send a message saying we're processing
await self.bot.say("Looking up your profile information....")