Answers for "check if reaction added discord py"

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 "check if reaction added discord py"

Python Answers by Framework

Browse Popular Code Answers by Language