From 5911de8d215170d87214987fbb61c52c9fbd3583 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 2 Dec 2020 09:50:44 -0500 Subject: [PATCH] Year min is 100 --- commands/events/calendar.js | 2 +- commands/events/days-since.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/events/calendar.js b/commands/events/calendar.js index 276e991b..3c56e9bd 100644 --- a/commands/events/calendar.js +++ b/commands/events/calendar.js @@ -22,7 +22,7 @@ module.exports = class CalendarCommand extends Command { key: 'year', prompt: 'What year would you like to get the calendar of?', type: 'integer', - min: 1 + min: 100 } ] }); diff --git a/commands/events/days-since.js b/commands/events/days-since.js index 7c952e39..7f6e9edb 100644 --- a/commands/events/days-since.js +++ b/commands/events/days-since.js @@ -26,7 +26,7 @@ module.exports = class DaysSinceCommand extends Command { key: 'year', prompt: 'What year would you like to get the days since?', type: 'integer', - min: 1 + min: 100 } ] });