merge-requests/1/merge
Matthew 2019-10-30 22:12:08 -04:00
parent 62557efecf
commit 25c8611b4d
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 0 additions and 1 deletions

View File

@ -19,7 +19,6 @@ export default class Notify extends Command {
const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Sending notification...***`); const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Sending notification...***`);
const account = await this.client.db.Account.findOne({ $or: [{ username: args[0] }, { userID: args[0].replace(/[<@!>]/gi, '') }] }); const account = await this.client.db.Account.findOne({ $or: [{ username: args[0] }, { userID: args[0].replace(/[<@!>]/gi, '') }] });
if (!account) return edit.edit(`***${this.client.stores.emojis.error} Cannot find user.***`); if (!account) return edit.edit(`***${this.client.stores.emojis.error} Cannot find user.***`);
await this.client.util.createModerationLog(account.userID, message.member, 1, args.slice(1).join(' '));
const embed = new RichEmbed() const embed = new RichEmbed()
.setTitle('Cloud Account | Notification') .setTitle('Cloud Account | Notification')
.setDescription(args.slice(1).join(' ')) .setDescription(args.slice(1).join(' '))