From d0062ffad68e5086d96146dcfd98c38739793100 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 9 Feb 2021 18:39:58 -0500 Subject: [PATCH] Add 2x2 Minesweeper --- commands/games-sp/minesweeper.js | 2 +- commands/util-public/high-scores.js | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/games-sp/minesweeper.js b/commands/games-sp/minesweeper.js index 977f1917..5685815f 100644 --- a/commands/games-sp/minesweeper.js +++ b/commands/games-sp/minesweeper.js @@ -22,7 +22,7 @@ module.exports = class MinesweeperCommand extends Command { type: 'integer', default: 9, max: 10, - min: 3 + min: 2 } ] }); diff --git a/commands/util-public/high-scores.js b/commands/util-public/high-scores.js index bc033780..5a0fb2d7 100644 --- a/commands/util-public/high-scores.js +++ b/commands/util-public/high-scores.js @@ -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) { diff --git a/package.json b/package.json index 10e20bd3..f5c3e9c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "129.1.0", + "version": "129.1.1", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {