1
0
Fork 0
refactor/models
Matthew 2019-10-27 21:14:28 -04:00
parent c4fd0c000b
commit e9ae7c3ee8
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,8 @@ export default class Util {
}
public async handleError(error: Error, message?: Message, command?: Command): Promise<void> {
this.client.signale.error(error);
/*
const info = { content: `\`\`\`js\n${error.stack}\n\`\`\``, embed: null };
if (message) {
const embed = new RichEmbed();
@ -65,6 +67,7 @@ export default class Util {
if (message) this.client.createMessage('595788220764127272', 'Message content for above error');
if (command) this.client.commands.get(command.name).enabled = false;
if (message) message.channel.createMessage(`***${this.client.stores.emojis.error} An unexpected error has occured - please contact a member of the Engineering Team.${command ? ' This command has been disabled.' : ''}***`);
*/
}
public splitFields(fields: {name: string, value: string, inline?: boolean}[]): {name: string, value: string, inline?: boolean}[][] {