discord py check if message has certain reaction

Solutions on MaxInterview for discord py check if message has certain reaction by the best coders in the world

showing results for - "discord py check if message has certain reaction"
Marlene
16 Nov 2017
1emoji = "" # some emoji as a string
2if any(reaction.emoji == emoji for reaction in message.reactions):
3	# there is at least one reaction of the specified emoji