From 33243f9bd6395146c297c03040bd843b696d709c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aluerie=20=E2=9D=A4=236524?= <33165440+Aluerie@users.noreply.github.com> Date: Tue, 27 Jun 2023 16:01:56 -0700 Subject: [PATCH] Fix Intents.emoji and emojis_and_stickers swapped alias decorators --- discord/flags.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/flags.py b/discord/flags.py index 0fb60084d..27eaf2628 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -850,7 +850,7 @@ class Intents(BaseFlags): """ return 1 << 2 - @flag_value + @alias_flag_value def emojis(self): """:class:`bool`: Alias of :attr:`.emojis_and_stickers`. @@ -859,7 +859,7 @@ class Intents(BaseFlags): """ return 1 << 3 - @alias_flag_value + @flag_value def emojis_and_stickers(self): """:class:`bool`: Whether guild emoji and sticker related events are enabled.