diff --git a/backend/src/plugins/Counters/commands/ResetAllCounterValuesCmd.ts b/backend/src/plugins/Counters/commands/ResetAllCounterValuesCmd.ts index 2b16f10b..021c93c3 100644 --- a/backend/src/plugins/Counters/commands/ResetAllCounterValuesCmd.ts +++ b/backend/src/plugins/Counters/commands/ResetAllCounterValuesCmd.ts @@ -48,9 +48,7 @@ export const ResetAllCounterValuesCmd = typedGuildCommand()( .send(`Resetting counter **${counterName}**. This might take a while. Please don't reload the config.`) .catch(() => null); - const lock = await pluginData.locks.acquire(counterIdLock(counterId), 10 * MINUTES); await resetAllCounterValues(pluginData, args.counterName); - lock.interrupt(); loadingMessage?.delete().catch(noop); sendSuccessMessage(pluginData, message.channel, `All counter values for **${counterName}** have been reset`);