diff --git a/structures/remind/Timer.js b/structures/remind/Timer.js index b44a531b..7b63c0ac 100644 --- a/structures/remind/Timer.js +++ b/structures/remind/Timer.js @@ -28,6 +28,7 @@ module.exports = class Timer { const channel = await this.client.channels.fetch(this.channelID); await channel.send(`🕰️ <@${this.userID}>, you wanted me to remind you of: **"${this.title}"**.`); } finally { + this.client.timers.delete(this.id); await this.client.redis.hdel('timer', id); } }, time);