diff --git a/src/structure/components/observers/CommandHandler.js b/src/structure/components/observers/CommandHandler.js index ecc47db..730500e 100644 --- a/src/structure/components/observers/CommandHandler.js +++ b/src/structure/components/observers/CommandHandler.js @@ -204,9 +204,12 @@ class CommandHandler extends Observer { if (!members.length) return { error: true }; return { value: members }; }, - // USERS: (string) => { - - // }, + USERS: async (string) => { + const args = Util.parseQuotes(string).map(([str]) => str); + const users = await guild.resolveUsers(args); + if (!users.length) return { error: true }; + return { value: users }; + }, // CHANNELS: (string) => { // },