This commit is contained in:
Dragon Fire
2024-03-20 00:36:40 -04:00
parent 51826788b1
commit 0362bdf613
2 changed files with 9 additions and 5 deletions
+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} Use ${helpUsage} for more information.`);
await msg.reply(`${parsed}\nUse ${helpUsage} for more information.`);
return;
}
const { command, args } = parsed;