From f91f82e9c3caffb51c7514ddaa3798185b0f6a75 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 24 Apr 2021 08:45:24 -0400 Subject: [PATCH] Fix --- structures/remind/Timer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/remind/Timer.js b/structures/remind/Timer.js index 7b63c0ac..98359c5d 100644 --- a/structures/remind/Timer.js +++ b/structures/remind/Timer.js @@ -29,7 +29,7 @@ module.exports = class Timer { 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); + await this.client.redis.hdel('timer', this.id); } }, time); }