Answers for "discord.py see if there is any reactions on a message"

1

discord.py check if message has certain reaction

emoji = "" # some emoji as a string
if any(reaction.emoji == emoji for reaction in message.reactions):
	# there is at least one reaction of the specified emoji
Posted by: Guest on May-30-2021

Code answers related to "discord.py see if there is any reactions on a message"

Python Answers by Framework

Browse Popular Code Answers by Language