Fix formatting error on timers cmd

This commit is contained in:
SileNce5k 2022-06-09 23:07:22 +02:00
parent fd9237cf47
commit 7bcb76cffb
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -5,8 +5,8 @@ module.exports = {
let authorTimers = "";
client.timers.forEach(timer => {
if(timer.user === message.author.id)
authorTimers += `<t:${timer.reminderDate}\n`;
authorTimers += `<t:${timer.reminderDate}:R>\n`;
});
message.channel.send(`Your timers are:\n${authorTimers}:R>`);
message.channel.send(`Your timers are:\n${authorTimers}`);
}
};