From 7aa1f43f2970230ee1a0e9be74c4c6012d7215aa Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sat, 29 Apr 2023 17:20:40 +0200 Subject: [PATCH] Timers command shows timer ID --- 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 a3ba7ca..c740839 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 += `\n`; + authorTimers += `${timer.ID} : \n`; }); let sendText = "" === authorTimers ? `You have no timers` : `Your timers are:\n${authorTimers}` message.channel.send(sendText);