From 7fef3eefce48c3e63bf99afca63f08b8da5e6054 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Fri, 30 Jun 2023 18:27:35 +0200 Subject: [PATCH] Show custom message when showing timer --- 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 4e20f57..7cf31e7 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 (), with the message being:\n${timer.customMessage}`; } resolve(); }