From a455cbbee8a5c60e385356abff9f3ca2fdf965a0 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Wed, 28 Oct 2020 21:04:04 -0400 Subject: [PATCH] fixes to 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 fb2dd3e..bc1e1b0 100644 --- a/src/commands/whois.ts +++ b/src/commands/whois.ts @@ -96,8 +96,8 @@ export default class Whois extends Command { if (score.total < 200) totalScore = '---'; else if (score.total > 800) totalScore = '800'; else totalScore = `${score.total}`; - embed.addField('Community Score', totalScore, true); - } else embed.addField('Community Score', 'N/C', true); + embed.addField('CommScore™', totalScore, true); + } else embed.addField('CommScore™', 'N/C', true); if (member.roles.length > 0) { embed.addField(`Roles [${member.roles.length}]`, member.roles.map((r) => this.mainGuild.roles.get(r)).sort((a, b) => b.position - a.position).map((r) => `<@&${r.id}>`).join(', '));