From c5cb2ecf4e30627eb3d6342521bf7bbf13547481 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 2 Apr 2017 15:36:24 +0000 Subject: [PATCH] AgH --- commands/numedit/roman.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/numedit/roman.js b/commands/numedit/roman.js index 7c9bbda4..5b3183da 100644 --- a/commands/numedit/roman.js +++ b/commands/numedit/roman.js @@ -14,7 +14,7 @@ module.exports = class RomanCommand extends commando.Command { prompt: 'What do you want to convert to Roman?', type: 'integer', validate: number => { - if (number > 1000000 || number < 0) { + if (number > 1000000 || number < 1) { return 'Please enter a number below one million and above zero.'; } return true;