From 5e48e3c1f8a4994c0f878df20f5dd28970e50819 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 12 Jul 2023 14:10:05 -0400 Subject: [PATCH] fixed check_discrim --- suggestions/suggestions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/suggestions/suggestions.py b/suggestions/suggestions.py index f5c6ba2..eda11e6 100644 --- a/suggestions/suggestions.py +++ b/suggestions/suggestions.py @@ -84,9 +84,9 @@ class Suggestions(commands.Cog): "Uh oh, looks like the Admins haven't added the required channel." ) embed = discord.Embed(color=await ctx.embed_colour(), description=suggestion) - footer = [f"Suggested by {self.check_discrim(author)} ({ctx.author.id})", + footer = [f"Suggested by {self.check_discrim(ctx.author)} ({ctx.author.id})", ctx.author.avatar_url] - author = [f"{self.check_discrim(author)}", ctx.author.avatar_url] + author = [f"{self.check_discrim(ctx.author)}", ctx.author.avatar_url] embed.set_footer( text=footer[0], icon_url=footer[1]