From ed0ea601d6ecdab5344c4a1d2e117f26bb3d56cc Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Wed, 12 Jul 2023 14:17:37 -0400 Subject: [PATCH] (hopefully) fixed check_discrim --- suggestions/suggestions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suggestions/suggestions.py b/suggestions/suggestions.py index 79384ef..4be5068 100644 --- a/suggestions/suggestions.py +++ b/suggestions/suggestions.py @@ -45,7 +45,7 @@ class Suggestions(commands.Cog): ) def check_discrim(self, user: discord.User): - if user.discriminator != 0: + if user.discriminator != "0": return user.name else: return f"{user.name}#{user.discriminator}"