Add proper formatting on timers
This commit is contained in:
parent
a681b6e102
commit
fd9237cf47
1 changed files with 2 additions and 2 deletions
|
@ -5,8 +5,8 @@ module.exports = {
|
||||||
let authorTimers = "";
|
let authorTimers = "";
|
||||||
client.timers.forEach(timer => {
|
client.timers.forEach(timer => {
|
||||||
if(timer.user === message.author.id)
|
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>`);
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Add table
Reference in a new issue