From f3272709be9959dcac5b556efdb20f7a0447c0fb Mon Sep 17 00:00:00 2001 From: Matthew R Date: Thu, 10 Sep 2020 01:41:57 -0400 Subject: [PATCH] fixes --- src/commands/addnote.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/commands/addnote.ts b/src/commands/addnote.ts index 9b82861..27c8741 100644 --- a/src/commands/addnote.ts +++ b/src/commands/addnote.ts @@ -15,11 +15,12 @@ export default class AddNote extends Command { public async run(message: Message, args: string[]) { try { if (!args[0] || args.length < 1) return this.client.commands.get('help').run(message, [this.name]); - const member = this.client.util.resolveMember(args[0], this.mainGuild); - if (!member) return this.error(message.channel, 'The member you specified could not be found.'); + let { user } = this.client.util.resolveMember(args[0], this.mainGuild); + if (!user) user = await this.client.getRESTUser(args[0]); + if (!user) return this.error(message.channel, 'The member you specified could not be found.'); const note: { userID?: string, staffID: string, date: Date, category?: string, text?: string } = { - userID: member.user.id, + userID: user.id, date: new Date(), staffID: message.author.id, };