From 7cd4cc654a07d3b25e7b012c18d618043963e819 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh <102361830+SeaswimmerTheFsh@users.noreply.github.com> Date: Sat, 3 Jun 2023 08:49:09 -0400 Subject: [PATCH] added a link to -unix --- galaxy/galaxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 715850f..8ed1b52 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -112,7 +112,7 @@ 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"") + embed=discord.Embed(title="Current Time", url="https://www.unixtimestamp.com/", 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)