1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 08:20:59 -04:00

Update DZ function

This commit is contained in:
toast-ts 2023-01-19 15:41:10 +11:00
parent 221341ee64
commit ad56fc2779

View File

@ -43,7 +43,8 @@ client.on('ready', async()=>{
})
// Handle errors
function DZ(error:Error){
function DZ(error:Error){// Yes, I may have shiternet but I don't need to wake up to like a hundred messages or so.
if (['getaddrinfo ENOTFOUND discord.com'].includes(error.message)) return;
console.log(error);
(client.channels.resolve(client.config.mainServer.channels.errors) as Discord.TextChannel).send({embeds: [new client.embed().setColor('#420420').setTitle('Error caught!').setDescription(`**Error:** \`${error.message}\`\n\n**Stack:** \`${`${error.stack}`.slice(0, 2500)}\``)]})
}