diff --git a/galaxy/galaxy.py b/galaxy/galaxy.py index 7bee494..b42f13a 100644 --- a/galaxy/galaxy.py +++ b/galaxy/galaxy.py @@ -12,7 +12,8 @@ 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"", footer=f"{timestamp}") + embed=discord.Embed(title="Current Time", color=await self.bot.get_embed_color(None), description=f"") + embed.set_footer(text=f"{timestamp}") await ctx.send(embed=embed)