From 29cebebc18e9570b699caef8ebb04f4d3934722d Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 2 Sep 2021 19:49:21 -0400 Subject: clean up --- src/commands/info/userInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands/info/userInfo.ts') diff --git a/src/commands/info/userInfo.ts b/src/commands/info/userInfo.ts index 9fddd67..4e60f4c 100644 --- a/src/commands/info/userInfo.ts +++ b/src/commands/info/userInfo.ts @@ -180,7 +180,7 @@ export default class UserInfoCommand extends BushCommand { } if (perms.length) userEmbed.addField('ยป Important Perms', perms.join(' ')); - if (emojis) userEmbed.setDescription('\u200B' /*zero width space*/ + emojis.join(' ')); + if (emojis) userEmbed.setDescription(`\u200B${emojis.join(' ')}`); // zero width space return await message.util.reply({ embeds: [userEmbed] }); } -- cgit