From 9eb1202641f1b095a5da2e61425c09d02cc03d4e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 29 Apr 2024 02:16:03 -0400 Subject: [PATCH] test --- framework/types/user.js | 1 + 1 file changed, 1 insertion(+) 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;