#user id vs author id
1 messages · Page 1 of 1 (latest)
Hey! Once your issue is solved, press the button below to close this thread!
@interactions.slash_command(name="help")
async def help(self, ctx: interactions.SlashContext):
print(ctx.user.id)
print(ctx.author.id)
print(ctx.author_id)
prints out:
126814119281164288
126814119281164288
126814119281164288
it seems like... all of them are correct. 🤷