diff options
| author | Rapptz <[email protected]> | 2017-05-27 01:12:06 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2017-05-27 01:12:06 -0400 |
| commit | ee3c77353feb3bc4a4f4712e0b7581c9184be2d9 (patch) | |
| tree | 60e2857263f2626c1acc1b18ad40b78f0a3424b9 /discord | |
| parent | [commands] Fix EmojiConverter not working with underscore names. (diff) | |
| download | discord.py-ee3c77353feb3bc4a4f4712e0b7581c9184be2d9.tar.xz discord.py-ee3c77353feb3bc4a4f4712e0b7581c9184be2d9.zip | |
Add highest verification level.
Diffstat (limited to 'discord')
| -rw-r--r-- | discord/enums.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/discord/enums.py b/discord/enums.py index 1fcdea82..d0c343a8 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -70,11 +70,13 @@ class VoiceRegion(Enum): return self.value class VerificationLevel(Enum): - none = 0 - low = 1 - medium = 2 - high = 3 - table_flip = 3 + none = 0 + low = 1 + medium = 2 + high = 3 + table_flip = 3 + highest = 4 + double_table_flip = 4 def __str__(self): return self.name |