diff --git a/assets/json/roman-numeral.json b/assets/json/roman-numeral.json index e2136ba5..5ec51c1f 100644 --- a/assets/json/roman-numeral.json +++ b/assets/json/roman-numeral.json @@ -1,4 +1,10 @@ { + "M̅": 1000000, + "D̅": 500000, + "C̅": 100000, + "L̅": 50000, + "X̅": 10000, + "V̅": 5000, "M": 1000, "CM": 900, "D": 500, diff --git a/commands/games/quiz.js b/commands/games/quiz.js index 7db1a35d..b3a34fdb 100644 --- a/commands/games/quiz.js +++ b/commands/games/quiz.js @@ -23,6 +23,7 @@ module.exports = class QuizCommand extends Command { key: 'type', prompt: `Which type of question would you like to have? Either ${list(types, 'or')}.`, type: 'string', + default: 'multiple', validate: type => { if (types.includes(type.toLowerCase())) return true; return `Invalid type, please enter either ${list(types, 'or')}.`; diff --git a/commands/number-edit/roman-numeral.js b/commands/number-edit/roman-numeral.js index cfb3cb14..65a6936f 100644 --- a/commands/number-edit/roman-numeral.js +++ b/commands/number-edit/roman-numeral.js @@ -15,7 +15,7 @@ module.exports = class RomanNumeralCommand extends Command { prompt: 'What number would you like to convert to roman numerals?', type: 'integer', min: 0, - max: 4999 + max: 4999999 } ] }); diff --git a/package.json b/package.json index c4b9bf5f..083921d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "66.4.1", + "version": "66.4.2", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {