1

I am creating a Discord bot that needs to check all messages to see if a certain string is in an embed message created by any other Discord bot. I know I can use message.content to get a string of the message a user has sent but how can I do something similar with bot embeds in Python?

petezurich
  • 9,280
  • 9
  • 43
  • 57
Brandalf
  • 476
  • 1
  • 6
  • 20

1 Answers1

1

Use message.embeds instead to get the embed string content

Brandalf
  • 476
  • 1
  • 6
  • 20