forked from engineering/cloudservices
Merge branch 'master' into 'master'
Addition of "// @ts-ignore" to commands to fix https://gitlab.libraryofcode.us/engineering/cloudservices/-/jobs/1261 as requested by Bsian. See merge request engineering/cloudservices!1refactor/models
commit
ecf35e8597
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue