From 23be650859996da12108601db92d5bb2b4a239b3 Mon Sep 17 00:00:00 2001 From: Navy Date: Tue, 21 Apr 2020 20:57:44 +0300 Subject: [PATCH] semi --- structure/interfaces/Argument.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.