From 0315770d5abf462e8753d3f2c1f6950312a9cf53 Mon Sep 17 00:00:00 2001 From: tropii <97747461+TropiiDev@users.noreply.github.com> Date: Fri, 24 Nov 2023 17:43:59 -0500 Subject: [PATCH] Meme --- commands/meme.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/commands/meme.py b/commands/meme.py index 7abab4a..3700775 100644 --- a/commands/meme.py +++ b/commands/meme.py @@ -42,12 +42,10 @@ class meme(commands.Cog): response = requests.request("GET", url, headers=headers) json_data = json.loads(response.text) - meme = json_data["postLink"] title = json_data["title"] image = json_data["url"] em = discord.Embed(title=title, color=ctx.author.color) em.set_image(url=image) - em.set_footer(text=meme) await ctx.send(embed=em) async def setup(bot):