From 2a9492ccbba204da5dbb27ab3e05444efe0501fa Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 7 Jan 2024 13:51:40 -0500 Subject: [PATCH] prettify whois --- src/commands/whois.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/whois.ts b/src/commands/whois.ts index 83ad1e0..3375075 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -83,7 +83,7 @@ export default class Whois extends Command { const finger = !member.roles.cache.has('662163685439045632') ? fingerInformation.replace(this.IP_REGEX, '[MASKED IP ADDRESS]') : fingerInformation; embed.setDescription(`${finger}\n${chage}`); - embed.addField('Username', `${account.username} | <@${account.userID}>`, true); + embed.addField('Username', `${account.username} <<@${account.userID}>>`, true); embed.addField('Discord ID', account.userID, true); embed.addField('Email Address', account.emailAddress, true); embed.addField('Tier', String(account.tier), true); @@ -103,7 +103,7 @@ export default class Whois extends Command { this.client.util.exec(`memory ${account.username}`), ]); - embed.addField('Username', `${account.username} | <@${account.userID}>`, true); + embed.addField('Username', `${account.username} <<@${account.userID}>>`, true); embed.addField('Discord ID', account.userID, true); embed.addField('Tier', String(account.tier), true); embed.addField('Created By', (await this.client.util.getTechnicianName(await this.client.users.fetch(account.createdBy), 2)), true);