Minutes instead of seconds

This commit is contained in:
SileNce5k 2022-05-15 00:43:30 +02:00
parent 77a8b23427
commit 0076de762c
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -9,6 +9,6 @@ module.exports = {
let timer = setTimeout(function(){
message.channel.send(`<@${message.author.id}>, ${sendText}`);
}, time);
message.channel.send(`I will remind you in ${time / 60000} seconds`);
message.channel.send(`I will remind you in ${time / 60000} minutes`);
}
};