From b795a6e51b9ff69ed958f985908f81aff73022dc Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Tue, 20 Jul 2021 16:35:27 -0400 Subject: fixed caching --- src/commands/info/help.ts | 4 ---- src/commands/info/userInfo.ts | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) (limited to 'src/commands') 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..b9d59cc 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] }); } -- cgit