1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 00:10:58 -05:00

Rename client-error to match the rest

This commit is contained in:
toast-ts 2023-08-18 03:06:00 +10:00 committed by GitHub
parent 741302fafb
commit 477dddf10f

View File

@ -41,7 +41,7 @@ function DZ(error:Error, type:string){// Yes, I may have shiternet but I don't n
process.on('unhandledRejection', (error: Error)=>DZ(error, 'unhandledRejection'));
process.on('uncaughtException', (error: Error)=>DZ(error, 'uncaughtException'));
process.on('error', (error: Error)=>DZ(error, 'nodeError'));
client.on('error', (error: Error)=>DZ(error, 'client-error'));
client.on('error', (error: Error)=>DZ(error, 'clientError'));
// Audio Player event handling
if (client.config.botSwitches.music){