diff --git a/framework/types/user.js b/framework/types/user.js index 8e9e7596..b09eb074 100644 --- a/framework/types/user.js +++ b/framework/types/user.js @@ -9,6 +9,7 @@ module.exports = class UserArgumentType extends ArgumentType { const matches = val.match(/^(?:<@!?)?([0-9]+)>?$/); if (matches) { try { + console.log(matches); const user = await msg.client.users.fetch(matches[1]); if (!user) return false; return true;