From 441579420a3424daa62e4932f72e275c64137272 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Fri, 1 May 2020 01:48:40 -0400 Subject: [PATCH] changes to help cmd --- src/commands/help.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/help.ts b/src/commands/help.ts index 4c468d2..0a46112 100644 --- a/src/commands/help.ts +++ b/src/commands/help.ts @@ -96,7 +96,7 @@ export default class Help extends Command { default: break; } - return { name: `${this.client.config.prefix}${c.name}`, value: `**Description:** ${c.description}\n**Aliases:** ${aliases}\n**Usage:** ${c.usage}\n**Permissions:** ${perm}`, inline: false }; + return { name: `${this.client.config.prefix}${c.name}`, value: `**Description:** ${c.description}\n**Aliases:** ${aliases}\n**Usage:** ${c.usage}\n**Permissions:** ${perm ?? ''}`, inline: false }; }); const splitCommands = this.client.util.splitFields(commands); const cmdPages: RichEmbed[] = [];