#help with interaction
1 messages · Page 1 of 1 (latest)
discord.EmbedField(name="User", value=interaction.author, inline=False),
this wont work: value=interaction.author
Convert it to str.
It's also interaction.user
Interaction has no author attribute
str(interaction.user)
```?
Read the docs
.
?
Yes