From b1115cbd16663de119c502c1783d97bbddab9143 Mon Sep 17 00:00:00 2001 From: dragonfire535 Date: Mon, 13 Mar 2017 21:14:11 -0400 Subject: [PATCH] Roman Limit Changed from 10000 to a million --- 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 c24647f1..4049b51b 100644 --- a/commands/numedit/roman.js +++ b/commands/numedit/roman.js @@ -20,7 +20,7 @@ class RomanCommand extends commando.Command { console.log("[Command] " + message.content); let messagecontent = message.content.split(" ").slice(1).join(" "); let numberified = Number(messagecontent); - if(numberified > 10000) { + if(numberified > 1000000) { message.channel.sendMessage(':x: Error! Number is too high!'); } else { message.channel.sendMessage(romanNumeralConverter.getRomanFromInteger(numberified)).catch(error => message.channel.sendMessage(':x: Error! Something went wrong! Perhaps you entered nothing?'));