Minutes instead of seconds
This commit is contained in:
parent
77a8b23427
commit
0076de762c
1 changed files with 1 additions and 1 deletions
|
@ -9,6 +9,6 @@ module.exports = {
|
||||||
let timer = setTimeout(function(){
|
let timer = setTimeout(function(){
|
||||||
message.channel.send(`<@${message.author.id}>, ${sendText}`);
|
message.channel.send(`<@${message.author.id}>, ${sendText}`);
|
||||||
}, time);
|
}, time);
|
||||||
message.channel.send(`I will remind you in ${time / 60000} seconds`);
|
message.channel.send(`I will remind you in ${time / 60000} minutes`);
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Add table
Reference in a new issue