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);