From e73db927c17866793293868d915bf0e37a906737 Mon Sep 17 00:00:00 2001 From: Parker Date: Thu, 28 Nov 2024 00:41:33 -0600 Subject: Create `create_embed` template to replace `discord.Embed()` - Auto-set color to BOT_COLOR - Set footer to timestamp (overridden is timestamp is passed) - Optional thumbnail --- code/cogs/pause.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) (limited to 'code/cogs/pause.py') diff --git a/code/cogs/pause.py b/code/cogs/pause.py index 2b7f98d..fb55aa4 100644 --- a/code/cogs/pause.py +++ b/code/cogs/pause.py @@ -4,7 +4,7 @@ from discord import app_commands from discord.ext import commands from cogs.music import Music -from utils.config import BOT_COLOR +from utils.config import create_embed class Pause(commands.Cog): @@ -18,20 +18,13 @@ class Pause(commands.Cog): player = self.bot.lavalink.player_manager.get(interaction.guild.id) await player.set_pause(pause=True) - embed = discord.Embed( + embed = create_embed( title=f"Music Now Paused ⏸️", description=( f"**[{player.current.title}]({player.current.uri})**\n\nQueued" f" by: {player.current.requester.mention}" ), - color=BOT_COLOR, - ) - embed.set_thumbnail(url=player.current.artwork_url) - embed.set_footer( - text=datetime.datetime.now(datetime.timezone.utc).strftime( - "%Y-%m-%d %H:%M:%S" - ) - + " UTC" + thumbnail=player.current.artwork_url, ) await interaction.response.send_message(embed=embed) -- cgit v1.2.3-70-g09d2