From bfd26c16f78600062416f45837f2936dfde0c11f Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 22 Nov 2020 11:52:09 -0500 Subject: [PATCH] Fix lint --- 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 4bfd8424..beb632c1 100644 --- a/commands/games-mp/poker.js +++ b/commands/games-mp/poker.js @@ -65,7 +65,7 @@ module.exports = class PokerCommand extends Command { }); } let winner = null; - let rotation = players.map(p => p.id); + const rotation = players.map(p => p.id); while (!winner) { const bigBlind = players.get(rotation[1]); bigBlind.money -= bigBlindAmount;