You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using discord.py and listening to every possible member's updates. One of those possibilities are flags. example:
Change in member's Flags
Member: @x
Before: MemberFlags value=46
=>After: MemberFlags value=110
Looking into other flags update:
from 10 to 42
from 42 to 46
from 42 to 106
from 46 to 110
The documentation²³ is both incomplete and inconsistent when compared to the data observed.
Since those data could be a very useful tool for server admins, i am requesting more documentation about the flags values.
Description
Using discord.py and listening to every possible member's updates. One of those possibilities are flags. example:
Change in member's Flags
Member: @x
Before: MemberFlags value=46
=>After: MemberFlags value=110
Looking into other flags update:
from 10 to 42
from 42 to 46
from 42 to 106
from 46 to 110
The documentation²³ is both incomplete and inconsistent when compared to the data observed.
Since those data could be a very useful tool for server admins, i am requesting more documentation about the flags values.
²https://discord.com/developers/docs/resources/user#user-object-user-flags
³https://discord.com/developers/docs/resources/guild#guild-member-object-guild-member-flags
Steps to Reproduce
async def on_member_update(self, before, after):
print(before.flags, after.flags)
Expected Behavior
Documentation should provide more information about the values and/or how to calculate those.
Current Behavior
Possible to display the values without understanding those
Screenshots/Videos
No response
Client and System Information
python 3.11.3
discord.py 2.3.2
The text was updated successfully, but these errors were encountered: