feat: add help hint for invalid stdin commands

This commit is contained in:
Isaac
2022-10-26 01:06:26 +01:00
parent 7417005782
commit 72e264d04c

View File

@@ -10,6 +10,6 @@ module.exports = class extends Listener {
}
run(commandName) {
this.client.log.warn('Unknown command:', commandName);
this.client.log.warn(`Unknown command: "${commandName}"; type "help" for a list of commands`);
}
};