diff options
| author | Patrick <[email protected]> | 2020-08-18 14:11:33 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-08-18 01:11:33 -0400 |
| commit | 9121441315cb5c06d63793e87755777e1d1c5d88 (patch) | |
| tree | 5bb62d4653372f5ca6841b936e9c7dac4eb39445 | |
| parent | Document on_error "special" behavior (diff) | |
| download | discord.py-9121441315cb5c06d63793e87755777e1d1c5d88.tar.xz discord.py-9121441315cb5c06d63793e87755777e1d1c5d88.zip | |
Add South Korea VoiceRegion
| -rw-r--r-- | discord/enums.py | 1 | ||||
| -rw-r--r-- | docs/api.rst | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/discord/enums.py b/discord/enums.py index 557136a5..c171e1e3 100644 --- a/discord/enums.py +++ b/discord/enums.py @@ -193,6 +193,7 @@ class VoiceRegion(Enum): russia = 'russia' japan = 'japan' southafrica = 'southafrica' + south_korea = 'south-korea' india = 'india' europe = 'europe' dubai = 'dubai' diff --git a/docs/api.rst b/docs/api.rst index 21f94d58..028bc994 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -1045,6 +1045,9 @@ of :class:`enum.Enum`. .. attribute:: southafrica The South Africa region. + .. attribute:: south_korea + + The South Korea region. .. attribute:: sydney The Sydney region. |