From 0076de762c397ca1c327c6a605edfd52823af5bd Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sun, 15 May 2022 00:43:30 +0200 Subject: [PATCH] Minutes instead of seconds --- commands/misc/timer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/timer.js b/commands/misc/timer.js index 4fdcd8a..c5d169d 100644 --- a/commands/misc/timer.js +++ b/commands/misc/timer.js @@ -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`); } }; \ No newline at end of file