1
0
Fork 0

Merge branch 'master' of gitlab.libraryofcode.org:engineering/cloudservices

refactor/models
Matthew 2019-12-27 21:56:07 -05:00
commit 7a42292f40
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
3 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,7 @@ export default class CWG_Data extends Command {
this.client.signale.log(embeds);
// @ts-ignore
if (embeds.length === 1) return message.channel.createMessage({ embed: embeds[0] });
// @ts-ignore
return createPaginationEmbed(message, this.client, embeds, {});
} catch (error) {
return this.client.util.handleError(error, message, this);

View File

@ -42,6 +42,7 @@ export default class Help extends Command {
});
// @ts-ignore
if (cmdPages.length === 1) return message.channel.createMessage({ embed: cmdPages[0] });
// @ts-ignore
return createPaginationEmbed(message, this.client, cmdPages);
}
const resolved = await this.client.util.resolveCommand(args, message);

View File

@ -57,6 +57,7 @@ export default class Modlogs extends Command {
// @ts-ignore
msg.edit({ content: '', embed: embeds[0] });
} else {
// @ts-ignore
createPaginationEmbed(message, this.client, embeds, {}, msg);
}
return msg;