Update index.js

This commit is contained in:
Eartharoid 2019-05-03 22:47:21 +01:00
parent f077e605b8
commit 5693458e8d

View File

@ -127,6 +127,7 @@ client.on('message', message => {
if(message.author.bot) return; if(message.author.bot) return;
if (message.channel.type === "dm") { if (message.channel.type === "dm") {
if (message.author.id === client.user.id) return; if (message.author.id === client.user.id) return;
if(config.logDMs){
if(config.useEmbeds) { if(config.useEmbeds) {
const embed = new Discord.RichEmbed() const embed = new Discord.RichEmbed()
.setAuthor(`${client.user.username} / Ticket Log`, client.user.avatarURL) .setAuthor(`${client.user.username} / Ticket Log`, client.user.avatarURL)
@ -138,6 +139,7 @@ client.on('message', message => {
} else { } else {
client.channels.get(config.logChannel).send(`DM received from **${message.author.tag} (${message.author.id})** : \n\n\`\`\`${message.content}\`\`\``); client.channels.get(config.logChannel).send(`DM received from **${message.author.tag} (${message.author.id})** : \n\n\`\`\`${message.content}\`\`\``);
} }
} else { return };
} }
if (message.channel.bot) return; if (message.channel.bot) return;
@ -156,14 +158,19 @@ client.on('message', message => {
client.commands.get(command).execute(message, args, config, version); client.commands.get(command).execute(message, args, config, version);
} catch (error) { } catch (error) {
console.error(error); console.error(error);
message.channel.send(`:x: **Oof!** An error occured whilst executing that command.`); message.channel.send(`:x: **Oof!** An error occured whilst executing that command.\nThe issue has been reported.`);
console.log(leeks.colors.red(`[ERROR] An unknown error occured whilst executing '${command}' command`));
} }
}); });
process.on('unhandledRejection', error => { process.on('unhandledRejection', error => {
console.log(leeks.colors.yellow(`[WARN] An error was not caught`)) console.warn(leeks.colors.yellow(`[WARN] An error was not caught`))
console.error(leeks.colors.red(`[ERROR] Uncaught Promise Error: \n${error.stack}`)); console.error(leeks.colors.red(`[ERROR] Uncaught Promise Error: \n${error.stack}`));
}); });
process.on('exit', (code) => {
console.log(leeks.colors.yellow(`Disconected from Discord API`));
console.log(leeks.colors.yellow(`Exiting (${code})`));
});
client.login(config.token); client.login(config.token);