diff options
author | Parker <contact@pkrm.dev> | 2024-12-01 01:49:14 -0600 |
---|---|---|
committer | Parker <contact@pkrm.dev> | 2024-12-01 01:49:14 -0600 |
commit | 7fc53338506b32912486e8684e6818cdf76c3cbf (patch) | |
tree | 23699158d33302a780b810e790d943d2f1a47245 | |
parent | 9f7c2860787a9312f1fedac69eb69f19ad52b363 (diff) |
Remove extra interaction response
-rw-r--r-- | code/cogs/play.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/code/cogs/play.py b/code/cogs/play.py index 56e3344..1756141 100644 --- a/code/cogs/play.py +++ b/code/cogs/play.py @@ -98,7 +98,6 @@ class Play(commands.Cog): f"Queued by: {interaction.user.mention}" ), ) - await interaction.response.send_message(embed=embed) # Otherwise, the result is just a single track, create that embed else: # Remove all but first track (most relevant result) @@ -112,7 +111,6 @@ class Play(commands.Cog): ), thumbnail=results.tracks[0].artwork_url, ) - await interaction.response.send_message(embed=embed) # If there are no results, and no embed if not results and not embed: |