From 2074afc89689d6aed49468450628bb3cf9fa3d8f Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 20 Mar 2024 00:38:26 -0400 Subject: [PATCH] Make help look better --- framework/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Client.js b/framework/Client.js index 8639bbd0..4ca09c3d 100644 --- a/framework/Client.js +++ b/framework/Client.js @@ -57,7 +57,7 @@ module.exports = class CommandClient extends Client { const parsed = await this.dispatcher.parseMessage(msg); if (typeof parsed === 'string') { const helpUsage = this.registry.commands.get('help').usage(); - await msg.reply(`${parsed}\nUse ${helpUsage} for more information.`); + await msg.reply(`${parsed}\n\nUse ${helpUsage} for more information.`); return; } const { command, args } = parsed;