console.log

This commit is contained in:
MARCROCK22 2024-03-18 20:03:50 -04:00
parent add53be029
commit 023e0ba965

View File

@ -95,7 +95,6 @@ export async function onMessageCreate(
}; };
const args = (self.options?.commands?.argsParser ?? defaultArgsParser)(content, command); const args = (self.options?.commands?.argsParser ?? defaultArgsParser)(content, command);
const { options, errors } = await parseOptions(self, command, rawMessage, args, resolved); const { options, errors } = await parseOptions(self, command, rawMessage, args, resolved);
console.log({ options, errors });
const optionsResolver = new OptionResolver(self, options, parent as Command, message.guildId, resolved); const optionsResolver = new OptionResolver(self, options, parent as Command, message.guildId, resolved);
const context = new CommandContext(self, message, optionsResolver, shardId, command); const context = new CommandContext(self, message, optionsResolver, shardId, command);
const extendContext = self.options?.context?.(message) ?? {}; const extendContext = self.options?.context?.(message) ?? {};