From b0e9f88879f0c89f3110b816e96bc7cce2ec6a85 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 1 Jun 2023 12:30:01 +0200 Subject: [PATCH] Fix timer show command failing --- util/timer/showTimer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/timer/showTimer.js b/util/timer/showTimer.js index 2db1663..4e20f57 100644 --- a/util/timer/showTimer.js +++ b/util/timer/showTimer.js @@ -14,7 +14,7 @@ module.exports = async function (authorID, timerID) { if(timer === undefined){ sendText = "Timer not found"; }else{ - sendText = `${timer.ID} will remind you ()"`; + sendText = `${timer.ID} will remind you ()`; } resolve(); }