diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-02 19:49:21 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-09-02 19:49:21 -0400 |
commit | 29cebebc18e9570b699caef8ebb04f4d3934722d (patch) | |
tree | 15a47fb5bea3839098d7700b48ad0f8b33eb13fa /src/commands/info/userInfo.ts | |
parent | 39927eb63081eb8120f75ad38bc336bb48d0f2a7 (diff) | |
download | tanzanite-29cebebc18e9570b699caef8ebb04f4d3934722d.tar.gz tanzanite-29cebebc18e9570b699caef8ebb04f4d3934722d.tar.bz2 tanzanite-29cebebc18e9570b699caef8ebb04f4d3934722d.zip |
clean up
Diffstat (limited to 'src/commands/info/userInfo.ts')
-rw-r--r-- | src/commands/info/userInfo.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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] }); } |