From ddbb4fbc72c4759c33af0ba8f603498b5f5458e5 Mon Sep 17 00:00:00 2001 From: FrozenChen Date: Tue, 25 Jun 2024 03:45:29 -0300 Subject: [PATCH] kurisu.py: add emoji intent --- kurisu.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kurisu.py b/kurisu.py index 9d9365fc..884f82be 100644 --- a/kurisu.py +++ b/kurisu.py @@ -125,9 +125,8 @@ class Kurisu(commands.Bot): tree: 'Kuritree' def __init__(self, command_prefix, description, commit, branch, pool): - intents = discord.Intents(guilds=True, members=True, messages=True, reactions=True, bans=True, - message_content=True, auto_moderation_execution=True) + message_content=True, auto_moderation_execution=True, emojis=True) allowed_mentions = discord.AllowedMentions(everyone=False, roles=False) super().__init__( command_prefix=commands.when_mentioned_or(*command_prefix),