From a098ab6616039af578d0165c2593fd9ccbd637e0 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sat, 20 May 2023 23:33:09 +0200 Subject: [PATCH] Show timer message on timers command --- commands/misc/timers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/timers.js b/commands/misc/timers.js index c740839..b6bf6e2 100644 --- a/commands/misc/timers.js +++ b/commands/misc/timers.js @@ -5,7 +5,7 @@ module.exports = { let authorTimers = ""; client.timers.forEach(timer => { if(timer.user === message.author.id) - authorTimers += `${timer.ID} : \n`; + authorTimers += `${timer.ID} : | ${timer.customMessage}\n`; }); let sendText = "" === authorTimers ? `You have no timers` : `Your timers are:\n${authorTimers}` message.channel.send(sendText);