2019-10-14 23:35:30 -04:00
|
|
|
import fs from 'fs-extra';
|
|
|
|
import { Message } from 'eris';
|
|
|
|
import Client from '../Client';
|
|
|
|
import Command from '../class/Command';
|
|
|
|
|
|
|
|
export default class Lock extends Command {
|
|
|
|
constructor(client: Client) {
|
|
|
|
super(client);
|
|
|
|
this.name = 'lock';
|
|
|
|
this.description = 'Locks an account.';
|
|
|
|
this.permissions = { roles: ['608095934399643649', '521312697896271873'] };
|
2019-10-15 18:38:49 -04:00
|
|
|
this.enabled = true;
|
2019-10-14 23:35:30 -04:00
|
|
|
}
|
|
|
|
|
2019-10-15 18:38:49 -04:00
|
|
|
public async run(message: Message, args: string[]) { // eslint-disable-line
|
2019-10-14 23:35:30 -04:00
|
|
|
let account = await this.client.db.Account.findOne({ account: args[0] });
|
2019-10-15 18:38:49 -04:00
|
|
|
if (!account) account = await this.client.db.Account.findOne({ userID: args[0].replace(/[<@!>]/gi, '') });
|
2019-10-14 23:35:30 -04:00
|
|
|
if (!account) return message.channel.createMessage(`***${this.client.stores.emojis.error} Cannot find user.***`);
|
|
|
|
const edit = await message.channel.createMessage(`***${this.client.stores.emojis.loading} Locking account...***`);
|
|
|
|
}
|
|
|
|
}
|