From 6ccb3f2d16397de7da04b20151ba45e1ce76fd51 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 22 Nov 2020 11:40:31 -0500 Subject: [PATCH] Fix --- commands/games-mp/poker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/games-mp/poker.js b/commands/games-mp/poker.js index 157e4ff6..120b7e94 100644 --- a/commands/games-mp/poker.js +++ b/commands/games-mp/poker.js @@ -297,9 +297,9 @@ module.exports = class PokerCommand extends Command { async resetGame(msg, players, deck) { deck.reset(); for (const player of players.values()) { - if (player.money <= 0 || player.strikes >= 3) { + if (player.money <= 100 || player.strikes >= 3) { await msg.say(`${player.user} has been kicked.`); - players.delete(player.id); + console.log(players.delete(player.id)); } else { player.currentBet = 0; player.hand = [];