From 0c82b53695d4062b450470b0b9a869d87b9baeef Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 11 May 2020 15:52:54 -0400 Subject: [PATCH] Fix --- commands/games-mp/poker.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/games-mp/poker.js b/commands/games-mp/poker.js index 6845ce71..3423372c 100644 --- a/commands/games-mp/poker.js +++ b/commands/games-mp/poker.js @@ -223,9 +223,9 @@ module.exports = class PokerCommand extends Command { makeTurnRotation(players, bigBlind, smallBlind) { return [ - smallBlind, - ...players.filter(player => bigBlind.id !== player.id && smallBlind.id !== player.id), - bigBlind + smallBlind.id, + ...players.filter(p => bigBlind.id !== p.id && smallBlind.id !== p.id).map(p => p.id), + bigBlind.id ]; }