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
No known key found for this signature in database
GPG Key ID: 0DE40AE37BBA5C33

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`);
}
};