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;