Add 2x2 Minesweeper

This commit is contained in:
Dragon Fire
2021-02-09 18:39:58 -05:00
parent 3c38656f1e
commit d0062ffad6
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ module.exports = class MinesweeperCommand extends Command {
type: 'integer',
default: 9,
max: 10,
min: 3
min: 2
}
]
});
+1 -1
View File
@@ -3,7 +3,7 @@ const { stripIndents } = require('common-tags');
const moment = require('moment');
require('moment-duration-format');
const { fetchHSUserDisplay } = require('../../util/Util');
const minesweeperSizes = [3, 4, 5, 6, 7, 8, 9, 10];
const minesweeperSizes = [2, 3, 4, 5, 6, 7, 8, 9, 10];
module.exports = class HighScoresCommand extends Command {
constructor(client) {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "129.1.0",
"version": "129.1.1",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {