From d47f475afd3a7726a1b4168d87212fcf15f7d9fe Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 25 May 2020 09:44:58 -0400 Subject: [PATCH] Fix #59 --- commands/games-mp/poker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/games-mp/poker.js b/commands/games-mp/poker.js index a68a64c5..3687ae48 100644 --- a/commands/games-mp/poker.js +++ b/commands/games-mp/poker.js @@ -217,7 +217,7 @@ module.exports = class PokerCommand extends Command { let turnOver = false; const turnRotation = this.makeTurnRotation(players, folded, bigBlind, smallBlind); while (!turnOver) turnOver = await this.bettingRound(msg, players, turnRotation, folded, turnData); - this.resetHasGoneOnce(); + this.resetHasGoneOnce(players); if (turnRotation.length === 1) { const remainer = players.get(turnRotation[0]); await msg.say(`${remainer.user} takes the pot.`);