aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/enums.py13
-rw-r--r--docs/api.rst15
2 files changed, 6 insertions, 22 deletions
diff --git a/discord/enums.py b/discord/enums.py
index 5f6a599b..1fc0b29e 100644
--- a/discord/enums.py
+++ b/discord/enums.py
@@ -225,14 +225,11 @@ class SpeakingState(Enum):
return self.value
class VerificationLevel(Enum):
- none = 0
- low = 1
- medium = 2
- high = 3
- table_flip = 3
- extreme = 4
- double_table_flip = 4
- very_high = 4
+ none = 0
+ low = 1
+ medium = 2
+ high = 3
+ highest = 4
def __str__(self):
return self.name
diff --git a/docs/api.rst b/docs/api.rst
index d3aa1729..bac81d32 100644
--- a/docs/api.rst
+++ b/docs/api.rst
@@ -1301,23 +1301,10 @@ of :class:`enum.Enum`.
Member must have a verified email, be registered on Discord for more
than five minutes, and be a member of the guild itself for more than
ten minutes.
- .. attribute:: table_flip
-
- An alias for :attr:`high`.
- .. attribute:: extreme
+ .. attribute:: highest
Member must have a verified phone on their Discord account.
- .. attribute:: double_table_flip
-
- An alias for :attr:`extreme`.
-
- .. attribute:: very_high
-
- An alias for :attr:`extreme`.
-
- .. versionadded:: 1.4
-
.. class:: NotificationLevel
Specifies whether a :class:`Guild` has notifications on for all messages or mentions only by default.