Add proper formatting on timers

This commit is contained in:
SileNce5k 2022-06-09 23:04:03 +02:00
parent a681b6e102
commit fd9237cf47
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 += `${timer.reminderDate}\n`;
authorTimers += `<t:${timer.reminderDate}\n`;
});
message.channel.send(`Your timers are:\n${authorTimers}`);
message.channel.send(`Your timers are:\n${authorTimers}:R>`);
}
};