From 875729258ee975b905de3521ae58d0083ccdfa60 Mon Sep 17 00:00:00 2001 From: Ske Date: Mon, 15 Apr 2019 17:11:45 +0200 Subject: [PATCH] Actually make a tag, not just dump the ID... *facepalm* --- src/pluralkit/bot/embeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pluralkit/bot/embeds.py b/src/pluralkit/bot/embeds.py index 48010ed4..a1570498 100644 --- a/src/pluralkit/bot/embeds.py +++ b/src/pluralkit/bot/embeds.py @@ -99,7 +99,7 @@ async def system_card(conn, client: discord.Client, system: System, is_own_syste for account_id in await system.get_linked_account_ids(conn): try: account = await client.get_user_info(account_id) - account_names.append("{} ({}#{})".format(account_id, account.name, account.discriminator)) + account_names.append("<@{}> ({}#{})".format(account_id, account.name, account.discriminator)) except discord.NotFound: account_names.append("(deleted account {})".format(account_id))