add reactions intent (#313)

fixes #312
This commit is contained in:
classabbyamp 2020-12-10 09:07:30 -05:00 committed by GitHub
parent 940f45f4d4
commit d6e381efec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -49,6 +49,7 @@ intents = discord.Intents.none()
intents.guilds = True
intents.guild_messages = True
intents.dm_messages = True
intents.reactions = True
member_cache = discord.MemberCacheFlags.from_intents(intents)