From 623b0765d6616e843f4fb17a95e4163b8012e547 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 21 Jun 2020 11:42:09 -0400 Subject: [PATCH] Fix --- commands/other/timer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/other/timer.js b/commands/other/timer.js index ad1152ff..3c169f55 100644 --- a/commands/other/timer.js +++ b/commands/other/timer.js @@ -23,7 +23,7 @@ module.exports = class TimerCommand extends Command { async run(msg, { time }) { const display = time > 59 ? `${time / 60} minutes` : `${time} seconds`; await msg.say(`🕰️ Set a timer for **${display}**.`); - await delay(time / 1000); + await delay(time * 1000); return msg.say(`🕰️ Your **${display}** timer is finished!`); } };