aboutsummaryrefslogtreecommitdiff
path: root/src/commands/info/userInfo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/info/userInfo.ts')
-rw-r--r--src/commands/info/userInfo.ts11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/commands/info/userInfo.ts b/src/commands/info/userInfo.ts
index c62be93..98ead3d 100644
--- a/src/commands/info/userInfo.ts
+++ b/src/commands/info/userInfo.ts
@@ -1,11 +1,4 @@
-import {
- BushCommand,
- BushGuild,
- BushGuildMember,
- type BushMessage,
- type BushSlashMessage,
- type BushUser
-} from '#lib';
+import { BushCommand, BushGuild, BushGuildMember, type BushMessage, type BushSlashMessage, type BushUser } from '#lib';
import { MessageEmbed, type Snowflake } from 'discord.js';
// TODO: Add bot information
@@ -177,6 +170,6 @@ export default class UserInfoCommand extends BushCommand {
if (perms.length) userEmbed.addField('ยป Important Perms', perms.join(' '));
if (emojis) userEmbed.setDescription(`\u200B${emojis.join(' ')}`); // zero width space
- return userEmbed
+ return userEmbed;
}
}