diff options
author | Parker <contact@pkrm.dev> | 2024-11-29 01:36:06 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-11-29 01:36:06 -0600 |
commit | 4e8030eca4b1f4028268683ccfc7b481b1608dde (patch) | |
tree | d208e1c582733bd82993715b9cbc9266aca5390c /code/utils/command_tree.py | |
parent | e2916fb0aaf5ae7c6306feb7bc13405aabb29ae6 (diff) |
Largely embed wording changes + other small tweaks + combine pause commands
Diffstat (limited to 'code/utils/command_tree.py')
-rw-r--r-- | code/utils/command_tree.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/code/utils/command_tree.py b/code/utils/command_tree.py index 03ecfe4..afdbd2c 100644 --- a/code/utils/command_tree.py +++ b/code/utils/command_tree.py @@ -69,22 +69,5 @@ class Tree(app_commands.CommandTree): except discord.errors.InteractionResponded: await interaction.followup.send(embed=embed, ephemeral=True) - elif (error, LoadError): - embed = create_embed( - title="Load Error", - description=( - "Apple Music and Spotify do not allow direct playing from" - " their websites, and I was unable to load a track on a" - " valid source. Please try again." - ), - ) - # Only send the error if the interaction is still valid - try: - await interaction.response.send_message( - embed=embed, ephemeral=True - ) - except discord.errors.InteractionResponded: - pass - else: raise error |