Make help look better

This commit is contained in:
Dragon Fire
2024-03-20 00:38:26 -04:00
parent 0362bdf613
commit 2074afc896
+1 -1
View File
@@ -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;