From 6f0378424c95af6d16b830f1f362cba21405330d Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Tue, 28 Feb 2023 03:49:20 -0500 Subject: [PATCH] fixed unix command --- galaxy/galaxy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index c8c5c7f..974f8d3 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -12,8 +12,9 @@ class Galaxy(commands.Cog): async def unix(self, ctx): """Posts the current Unix timestamp.""" timestamp = int(datetime.timestamp(datetime.now())) - embed=discord.Embed(title="Current Time", color=await self.bot.get_embed_color(None), description=f"", image="https://cdn.discordapp.com/attachments/1047347377348030494/1080048421127335956/image.png") + embed=discord.Embed(title="Current Time", color=await self.bot.get_embed_color(None), description=f"") embed.set_footer(text=f"{timestamp}") + embed.set_image(url="https://cdn.discordapp.com/attachments/1047347377348030494/1080048421127335956/image.png") await ctx.send(embed=embed) await ctx.message.delete()