Obtaining username from user id | discord.py
问题 Well I have been working with databases for a while with discord in order to obtain major lists of user id's in a queue, although I am having problem's obtaining the user from user id as it returns none For Example members = list(privateduos[matchid]) user = discord.User(id=int(members[0])) await client.say("Say `test` " + str(user)) await client.wait_for_message(content="test", author=user) This is the Output The client.wait_for_message doesnt seem to detect the message author in the code as