aboutsummaryrefslogtreecommitdiff
path: root/src/commands/info
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/info')
-rw-r--r--src/commands/info/userInfo.ts2
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] });
}