This commit is contained in:
Erik 2020-04-21 20:57:44 +03:00
parent c7013069e1
commit 23be650859

View File

@ -16,7 +16,7 @@ class Argument {
this.prompts = options.prompts || {
MISSING: `Argument **${this.name}** is missing and is required.`,
INVALID: `Argument **${this.name}** must be a \`${this.type}\` value.`
} //Default prompts to be replied to the user if an argument is missing or invalid.
}; //Default prompts to be replied to the user if an argument is missing or invalid.
//NOTE: Instead of telling the person the argument is missing and is required, ask them and continue the command execution afterwards. More work to do.