diff --git a/commands/misc/timer.js b/commands/misc/timer.js index 4cc6282..ddbe9eb 100644 --- a/commands/misc/timer.js +++ b/commands/misc/timer.js @@ -38,7 +38,7 @@ module.exports = { sendText = "Please specify a time, and a message to send after the timer has finished"; break; } - if(!isNaN(parseTime(args[0], Math.floor(new Date() / 1000)))) + if(!isNaN(parseTime(args[0], Math.floor(new Date() / 1000)) || !isNaN(args[0]))) sendText = await createTimer(message, args); break; }