From c62831ecb730db3836215b4d2d525b92470f8986 Mon Sep 17 00:00:00 2001 From: Luke <84588908+LukeFokin@users.noreply.github.com> Date: Thu, 4 May 2023 16:53:41 +0300 Subject: [PATCH] feat(PartyType): add a new activity (#984) Signed-off-by: Luke <84588908+LukeFokin@users.noreply.github.com> --- changelog/984.feature.rst | 1 + disnake/enums.py | 1 + docs/api/voice.rst | 5 +++++ 3 files changed, 7 insertions(+) create mode 100644 changelog/984.feature.rst diff --git a/changelog/984.feature.rst b/changelog/984.feature.rst new file mode 100644 index 0000000000..21bbbe2ef1 --- /dev/null +++ b/changelog/984.feature.rst @@ -0,0 +1 @@ +Add a new voice channel activity, :attr:`PartyType.gartic_phone`. diff --git a/disnake/enums.py b/disnake/enums.py index 561e31608a..d793c13430 100644 --- a/disnake/enums.py +++ b/disnake/enums.py @@ -266,6 +266,7 @@ class PartyType(Enum): watch_together = 880218394199220334 sketch_heads = 902271654783242291 ocho = 832025144389533716 + gartic_phone = 1007373802981822582 class SpeakingState(Enum): diff --git a/docs/api/voice.rst b/docs/api/voice.rst index b3e5a02f29..457473a926 100644 --- a/docs/api/voice.rst +++ b/docs/api/voice.rst @@ -158,6 +158,11 @@ PartyType The "Ocho" activity. .. versionadded:: 2.4 + .. attribute:: gartic_phone + + The "Gartic Phone" activity. + + .. versionadded:: 2.9 Events ------