1
0
Fork 0

use util binded to client on modlogs

refactor/models
Matthew 2019-10-26 13:06:32 -04:00
parent 57f5c2a01c
commit 06c4390549
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 3 additions and 5 deletions

View File

@ -1,12 +1,10 @@
import { Message } from 'eris';
// eslint-disable-next-line import/no-unresolved
import { createPaginationEmbed } from 'eris-pagination';
import { Client, Util } from '..';
import { Client } from '..';
import { Command, RichEmbed } from '../class';
export default class Modlogs extends Command {
util: Util = new Util(this.client)
constructor(client: Client) {
super(client);
this.name = 'modlogs';
@ -42,7 +40,7 @@ export default class Modlogs extends Command {
});
const users = [...new Set(query.map((log) => log.userID))].map((u) => `<@${u}>`);
const logs = this.util.splitFields(formatted);
const logs = this.client.util.splitFields(formatted);
const embeds = logs.map((l) => {
const embed = new RichEmbed();
@ -59,7 +57,7 @@ export default class Modlogs extends Command {
createPaginationEmbed(message, this.client, embeds, {}, msg);
return msg;
} catch (error) {
return this.util.handleError(error, message, this);
return this.client.util.handleError(error, message, this);
}
}
}