diff options
| author | Rapptz <[email protected]> | 2016-09-09 19:23:55 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2016-09-09 19:23:55 -0400 |
| commit | 8384edb06180c46e46518270aeb8cc0037a09e44 (patch) | |
| tree | 660d623306dea11b24fa6c3b0ea04e3cf04ccaab | |
| parent | [commands] Default converters now take in IDs to match against. (diff) | |
| download | discord.py-8384edb06180c46e46518270aeb8cc0037a09e44.tar.xz discord.py-8384edb06180c46e46518270aeb8cc0037a09e44.zip | |
Add new EU Central and EU West server regions.
| -rw-r--r-- | discord/enums.py | 2 | ||||
| -rw-r--r-- | docs/api.rst | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index 54dac064..ab72ceb2 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -48,6 +48,8 @@ class ServerRegion(Enum): us_east = 'us-east' us_south = 'us-south' us_central = 'us-central' + eu_west = 'eu-west' + eu_central = 'eu-central' singapore = 'singapore' london = 'london' sydney = 'sydney' diff --git a/docs/api.rst b/docs/api.rst index b9f39b0e..91572621 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -471,6 +471,15 @@ All enumerations are subclasses of `enum`_. .. attribute:: us_east The US East region. + .. attribute:: us_central + + The US Central region. + .. attribute:: eu_west + + The EU West region. + .. attribute:: eu_central + + The EU Central region. .. attribute:: singapore The Singapore region. |