From b76d72c9eaf7cc1f3f99399c27381cc67cea3e3b Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 22 Feb 2018 00:26:54 +0000 Subject: [PATCH] Days can be up to 31 --- commands/events/days-until.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/events/days-until.js b/commands/events/days-until.js index c4df10a3..f1c67e13 100644 --- a/commands/events/days-until.js +++ b/commands/events/days-until.js @@ -18,7 +18,7 @@ module.exports = class DaysUntilCommand extends Command { prompt: 'What day would you like to get the days until?', type: 'integer', min: 1, - max: 12 + max: 31 } ] });