aboutsummaryrefslogtreecommitdiff
path: root/code/cogs
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-04-09 01:27:25 -0500
committerParker <contact@pkrm.dev>2024-04-09 01:27:25 -0500
commit2040a2f2fb9ef156ad0052c7ad194a8dd234553c (patch)
tree0b2fab3fa788164f621974ab75cd250e035bce96 /code/cogs
parentab6d784f2d2390e4d952bf993985b78332ee82f8 (diff)
Use custom `CreatePlayerError`
Diffstat (limited to 'code/cogs')
-rw-r--r--code/cogs/music.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/code/cogs/music.py b/code/cogs/music.py
index 107b6ae..1d8049b 100644
--- a/code/cogs/music.py
+++ b/code/cogs/music.py
@@ -11,6 +11,11 @@ from global_variables import (
)
+class CreatePlayerError(Exception):
+ "Raised when the create_player function errors out"
+ pass
+
+
class LavalinkVoiceClient(discord.VoiceProtocol):
"""
This is the preferred way to handle external voice sending
@@ -134,14 +139,14 @@ class Music(commands.Cog):
if not interaction.user.voice or not interaction.user.voice.channel:
if voice_client is not None:
- raise app_commands.errors.AppCommandError(
+ raise CreatePlayerError(
{
"title": "Not in my VC",
"description": "You must join my voice channel to run that command.",
}
)
- raise app_commands.AppCommandError(
+ raise CreatePlayerError(
{
"title": "No Channel",
"description": "You must join a voice channel before you can run that command.",
@@ -150,7 +155,7 @@ class Music(commands.Cog):
if voice_client is None:
if not should_connect:
- raise app_commands.AppCommandError(
+ raise CreatePlayerError(
{
"title": "Not Connected",
"description": "I am not connected and playing music right now, therefore that command will not work.",
@@ -162,7 +167,7 @@ class Music(commands.Cog):
)
if not permissions.connect or not permissions.speak:
- raise app_commands.AppCommandError(
+ raise CreatePlayerError(
{
"title": "Missing Permissions",
"description": "I need the `CONNECT` and `SPEAK` permissions in order to work.",
@@ -172,7 +177,7 @@ class Music(commands.Cog):
player.store("channel", interaction.channel.id)
else:
if int(player.channel_id) != interaction.user.voice.channel.id:
- raise app_commands.AppCommandError(
+ raise CreatePlayerError(
{
"title": "Not in my VC",
"description": "You must join my voice channel to run that command.",