Browse Source

bugfix - user type should look in state if its not a mention resolver

pull/11/head
Andrei 9 years ago
parent
commit
cc9ba3d641
  1. 7
      disco/bot/command.py

7
disco/bot/command.py

@ -147,9 +147,12 @@ class Command(object):
def resolve_user(ctx, uid):
if isinstance(uid, int):
return ctx.msg.mentions.get(uid)
if uid in ctx.msg.mentions:
return ctx.msg.mentions.get(uid)
else:
return ctx.msg.client.state.users.get(uid)
else:
return ctx.msg.mentions.select_one(username=uid[0], discriminator=uid[1])
return ctx.msg.client.state.users.select_one(username=uid[0], discriminator=uid[1])
def resolve_channel(ctx, cid):
return ctx.msg.guild.channels.get(cid)

Loading…
Cancel
Save