From ee6c27a7ce453a5af0db9157d1a70cf5ae345eb8 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 24 Mar 2024 00:40:00 -0400 Subject: [PATCH] seriously --- framework/Dispatcher.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/framework/Dispatcher.js b/framework/Dispatcher.js index 06069370..c4f1a8bd 100644 --- a/framework/Dispatcher.js +++ b/framework/Dispatcher.js @@ -80,6 +80,7 @@ module.exports = class CommandDispatcher { continue; } } + console.log(parsedArg); const valid = await arg.validate(parsedArg, msg, arg); if (!valid || typeof valid === 'string') { return stripIndents` @@ -87,6 +88,7 @@ module.exports = class CommandDispatcher { ${arg.invalidText} `; } + console.log(parsedArg); finalResult[arg.key] = await arg.parse(parsedArg, msg, arg); } return { command, args: finalResult };