Really high roman numerals

This commit is contained in:
Dragon Fire
2020-04-02 15:33:33 -04:00
parent 65f7806c95
commit 9dfef570a6
3 changed files with 14 additions and 2 deletions
+12
View File
@@ -1,4 +1,16 @@
{
"M̅": 1000000,
"C̅M̅": 9000000,
"D̅": 500000,
"C̅D̅": 400000,
"C̅": 100000,
"X̅C̅": 90000,
"L̅": 50000,
"X̅L̅": 40000,
"X̅": 10000,
"I̅X̅": 9000,
"V̅": 5000,
"̅I̅V̅": 4000,
"M": 1000,
"CM": 900,
"D": 500,
+1 -1
View File
@@ -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: 4999
max: Number.MAX_SAFE_INTEGER
}
]
});
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "112.19.6",
"version": "112.19.7",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {