diff options
| author | bmintz <[email protected]> | 2018-10-17 22:50:17 +0000 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-11-24 22:34:22 -0500 |
| commit | c184b0a53d2712de5d627aca317e712c641afb8f (patch) | |
| tree | f9954d48d4caf28f407f94e7d8eef1028fcdc3a3 /discord/enums.py | |
| parent | Add missing asyncio imports from the examples (diff) | |
| download | discord.py-c184b0a53d2712de5d627aca317e712c641afb8f.tar.xz discord.py-c184b0a53d2712de5d627aca317e712c641afb8f.zip | |
add support for Bug Hunter and Early Supporter flags
Diffstat (limited to 'discord/enums.py')
| -rw-r--r-- | discord/enums.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index a6a615c4..1d032d56 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -214,9 +214,11 @@ class UserFlags(Enum): staff = 1 partner = 2 hypesquad = 4 + bug_hunter = 8 hypesquad_bravery = 64 hypesquad_brilliance = 128 hypesquad_balance = 256 + early_supporter = 512 class ActivityType(IntEnum): unknown = -1 |