From 76f001d3fd9b28b3c1b5e240aa3a51f5e5d8ad26 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 25 May 2020 09:42:24 -0400 Subject: [PATCH] Allow only two players in poker --- commands/games-mp/poker.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/poker.js b/commands/games-mp/poker.js index 5ba45d29..a68a64c5 100644 --- a/commands/games-mp/poker.js +++ b/commands/games-mp/poker.js @@ -6,7 +6,7 @@ const Deck = require('../../structures/cards/Deck'); const { formatNumber, list, delay } = require('../../util/Util'); const { SUCCESS_EMOJI_ID } = process.env; const max = 6; -const min = 3; +const min = 2; const bigBlindAmount = 100; const smallBlindAmount = 50; const raiseRegex = /raise (\$?([0-9]+)?,?[0-9]+)/i; diff --git a/package.json b/package.json index dc0b49ca..32b0bcd4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "114.29.3", + "version": "114.29.4", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {