Remove subtraction on reminderTime

This commit is contained in:
SileNce5k 2022-06-12 14:50:13 +02:00
parent a34f08a1a2
commit 8bd28f045a
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -25,6 +25,6 @@ module.exports = {
}
client.timers.push(newTimer);
fs.writeFileSync('data/timers.json', JSON.stringify(client.timers, null, 4))
message.channel.send(`I will remind you <t:${Math.round(reminderTime - 10)}:R>`);
message.channel.send(`I will remind you <t:${reminderTime}:R>`);
}
};