From 7bcb76cffb77b0548e2b123f991862e915f160a0 Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Thu, 9 Jun 2022 23:07:22 +0200 Subject: [PATCH] Fix formatting error on timers cmd --- commands/misc/timers.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/misc/timers.js b/commands/misc/timers.js index a3cd5d3..0cc1329 100644 --- a/commands/misc/timers.js +++ b/commands/misc/timers.js @@ -5,8 +5,8 @@ module.exports = { let authorTimers = ""; client.timers.forEach(timer => { if(timer.user === message.author.id) - authorTimers += `\n`; }); - message.channel.send(`Your timers are:\n${authorTimers}:R>`); + message.channel.send(`Your timers are:\n${authorTimers}`); } }; \ No newline at end of file