pull/29/head
Matthew 2020-09-10 01:41:57 -04:00
parent 50697482e1
commit f3272709be
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 4 additions and 3 deletions

View File

@ -15,11 +15,12 @@ export default class AddNote extends Command {
public async run(message: Message, args: string[]) { public async run(message: Message, args: string[]) {
try { try {
if (!args[0] || args.length < 1) return this.client.commands.get('help').run(message, [this.name]); 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); let { user } = this.client.util.resolveMember(args[0], this.mainGuild);
if (!member) return this.error(message.channel, 'The member you specified could not be found.'); 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 } = { const note: { userID?: string, staffID: string, date: Date, category?: string, text?: string } = {
userID: member.user.id, userID: user.id,
date: new Date(), date: new Date(),
staffID: message.author.id, staffID: message.author.id,
}; };