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'; import { Message } from 'eris';
// eslint-disable-next-line import/no-unresolved // eslint-disable-next-line import/no-unresolved
import { createPaginationEmbed } from 'eris-pagination'; import { createPaginationEmbed } from 'eris-pagination';
import { Client, Util } from '..'; import { Client } from '..';
import { Command, RichEmbed } from '../class'; import { Command, RichEmbed } from '../class';
export default class Modlogs extends Command { export default class Modlogs extends Command {
util: Util = new Util(this.client)
constructor(client: Client) { constructor(client: Client) {
super(client); super(client);
this.name = 'modlogs'; 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 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 embeds = logs.map((l) => {
const embed = new RichEmbed(); const embed = new RichEmbed();
@ -59,7 +57,7 @@ export default class Modlogs extends Command {
createPaginationEmbed(message, this.client, embeds, {}, msg); createPaginationEmbed(message, this.client, embeds, {}, msg);
return msg; return msg;
} catch (error) { } catch (error) {
return this.util.handleError(error, message, this); return this.client.util.handleError(error, message, this);
} }
} }
} }