From fe5a426c47094afda51fe874fb8ada189c85c1f0 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Fri, 2 Mar 2018 23:10:10 +0000 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 c8d1ae2d..6f8f417c 100644 --- a/commands/other/timer.js +++ b/commands/other/timer.js @@ -26,7 +26,7 @@ module.exports = class TimerCommand extends Command { if (this.timers.has(msg.author.id)) return msg.reply('You can only have one timer at a time.'); this.timers.add(msg.author.id); await msg.say(`Setting a timer for ${seconds} seconds...`); - await wait(seconds / 1000); + await wait(seconds * 1000); this.timers.delete(msg.author.id); return msg.reply('Time\'s up!'); }