-
Prior to version 1.6 I reported receiving the outdated member object using bot = commands.Bot(
command_prefix = db.prefix,
case_insensitive=True,
help_command=None,
intents=Intents(messages=True, reactions=True, guilds=True, emojis=True),
member_cache_flags=MemberCacheFlags.none(),
max_messages=None
) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This shouldn't be possible unless Discord is sending stale data. With the member intent disabled or member cache disabled all user data is no longer cached by the library at all which means that it's entirely pass-through from what Discord gives. |
Beta Was this translation helpful? Give feedback.
This shouldn't be possible unless Discord is sending stale data. With the member intent disabled or member cache disabled all user data is no longer cached by the library at all which means that it's entirely pass-through from what Discord gives.