Remove from ratelimiter if command crash

(Untested because I live on the edge)
This commit is contained in:
Supositware 2024-08-28 00:13:14 +02:00
parent 19855f82f0
commit d604f0ad8e
2 changed files with 4 additions and 0 deletions

View file

@ -120,6 +120,8 @@ export default {
}
catch (error) {
console.error(error);
const hasPrallelLimit = await ratelimiter.checkParallel(interaction.user, commandName, command);
if (hasPrallelLimit) ratelimiter.removeParallel(commandName);
await interaction.followUp({ content: `There was an error while executing this command!\n\`${error}\``, ephemeral: true });
}
},

View file

@ -459,6 +459,8 @@ export default {
}
catch (error) {
console.error(error);
const hasPrallelLimit = await ratelimiter.checkParallel(message.author, commandName, command);
if (hasPrallelLimit) ratelimiter.removeParallel(commandName);
await message.reply({ content: `There was an error while executing this command!\n\`${error}\`` })
.catch(async () => {
await message.channel.send({ content: `There was an error while executing this command!\n\`${error}\`` });