From 3d0f880934492fa6d5094047909fab7c950d25d6 Mon Sep 17 00:00:00 2001 From: Amxgh <86120332+Amxgh@users.noreply.github.com> Date: Sat, 25 May 2024 17:32:41 +0400 Subject: [PATCH] feat: dnkl_list prints a user's uuid alongside their name --- src/func/General.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/func/General.py b/src/func/General.py index 0f6eaf5..998d8a8 100644 --- a/src/func/General.py +++ b/src/func/General.py @@ -56,8 +56,8 @@ async def dnkllist(ctx): # Create embed content = "" for _set in rows: - _, _, username = _set - content += f"{username}\n" + _, uuid, username = _set + content += f"{username} ||{uuid}||\n" return discord.Embed(title="The people on the do-not-kick-list are as follows:", description=content, color=neutral_color).set_footer(text=f"Total: {len(content.split())}")