From 3cd05cd48cbc8490b182b6e2c6c7ea2f6478159d Mon Sep 17 00:00:00 2001 From: Keanu Date: Mon, 12 Apr 2021 15:43:43 +0200 Subject: [PATCH] Fixed duplicate help entries. --- src/commands/system/help.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/system/help.ts b/src/commands/system/help.ts index fca0280..588aa92 100644 --- a/src/commands/system/help.ts +++ b/src/commands/system/help.ts @@ -27,7 +27,7 @@ export default new NamedCommand({ let output = LEGEND; for (const command of commandList) { - const field = `\n❯ \`${command.name}\`: ${command.description}`.repeat(2); + const field = `\n❯ \`${command.name}\`: ${command.description}`; const newOutput = output + field; // Push then reset the output if it overflows, otherwise, continue as normal.