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

:any squirrel's food

This commit is contained in:
toast-ts 2022-11-28 17:33:20 +11:00
parent 6f79e40ee1
commit ae7cf2f75e

View File

@ -13,7 +13,7 @@ export default {
try{
commandFile.default.run(client, interaction);
commandFile.uses ? commandFile.uses++ : commandFile.uses = 1;
} catch (error:any){
} catch (error){
console.log(`An error occured while running command "${commandFile.name}"`, error, error.stack);
return interaction.reply('An error occured while executing that command.');
}