From aa6fb54e993d40230759a0443d0481c7bca26d73 Mon Sep 17 00:00:00 2001 From: apple502j <33279053+apple502j@users.noreply.github.com> Date: Mon, 7 Mar 2022 18:10:11 +0900 Subject: [PATCH] Raise ClientException in Member.request_to_speak --- discord/member.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/discord/member.py b/discord/member.py index ac811aa49..6108a3e92 100644 --- a/discord/member.py +++ b/discord/member.py @@ -40,6 +40,7 @@ from .user import BaseUser, User, _UserTag from .activity import create_activity, ActivityTypes from .permissions import Permissions from .enums import Status, try_enum +from .errors import ClientException from .colour import Colour from .object import Object @@ -869,13 +870,15 @@ class Member(discord.abc.Messageable, _UserTag): Raises ------- + ClientException + You are not connected to a voice channel. Forbidden You do not have the proper permissions to the action requested. HTTPException The operation failed. """ if self.voice is None or self.voice.channel is None: - raise RuntimeError('Cannot request to speak while not connected to a voice channel.') + raise ClientException('Cannot request to speak while not connected to a voice channel.') payload = { 'channel_id': self.voice.channel.id,