aboutsummaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/info/help.ts4
-rw-r--r--src/commands/info/userInfo.ts2
2 files changed, 1 insertions, 5 deletions
diff --git a/src/commands/info/help.ts b/src/commands/info/help.ts
index 1786f8c..67ba8c0 100644
--- a/src/commands/info/help.ts
+++ b/src/commands/info/help.ts
@@ -60,10 +60,6 @@ export default class HelpCommand extends BushCommand {
]
: undefined;
- this.client.console.debug(!this.client.config.isDevelopment);
- this.client.console.debug(!this.client.guilds.cache.some((guild) => guild.ownerId === message.author.id));
- this.client.console.debug(components);
-
const isOwner = this.client.isOwner(message.author);
const isSuperUser = this.client.isSuperUser(message.author);
const command = args.command
diff --git a/src/commands/info/userInfo.ts b/src/commands/info/userInfo.ts
index 5e70323..7172c75 100644
--- a/src/commands/info/userInfo.ts
+++ b/src/commands/info/userInfo.ts
@@ -153,7 +153,7 @@ export default class UserInfoCommand extends BushCommand {
}
if (perms.length) userEmbed.addField('» Important Perms', perms.join(' '));
- if (emojis) userEmbed.setDescription(emojis.join(' '));
+ if (emojis) userEmbed.setDescription('​' /*zero width space*/ + emojis.join(' '));
return await message.util.reply({ embeds: [userEmbed] });
}