diff --git a/structure/interfaces/Argument.js b/structure/interfaces/Argument.js index 5acf6bf..e0ad903 100644 --- a/structure/interfaces/Argument.js +++ b/structure/interfaces/Argument.js @@ -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.