Skip to content

Commit

Permalink
feat: dnkl_list prints a user's uuid alongside their name
Browse files Browse the repository at this point in the history
  • Loading branch information
Amxgh committed May 25, 2024
1 parent 3b3433c commit 3d0f880
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/func/General.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())}")
Expand Down

0 comments on commit 3d0f880

Please sign in to comment.