From 89722d5bd4577d02e9890f95b8c36ffbd5e23009 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 2 Apr 2020 15:38:06 -0400 Subject: [PATCH] Even really large has limits --- commands/number-edit/roman.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/number-edit/roman.js b/commands/number-edit/roman.js index 58f4b18a..250b59bb 100644 --- a/commands/number-edit/roman.js +++ b/commands/number-edit/roman.js @@ -15,7 +15,7 @@ module.exports = class RomanCommand extends Command { prompt: 'What number would you like to convert to roman numerals?', type: 'integer', min: 0, - max: Number.MAX_SAFE_INTEGER + max: 3999999 } ] });