commit 83fbf2932571cac53ad57b77c10edc3e3e254543 parent 5768315d53139a49bae03b1a7d8f9cf69254ab38 Author: n0tr1v <n0tr1v@protonmail.com> Date: Mon, 18 Dec 2023 06:23:18 -0500 cleanup Diffstat:
| M | pkg/web/handlers/poker/poker.go | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/web/handlers/poker/poker.go b/pkg/web/handlers/poker/poker.go @@ -1204,7 +1204,7 @@ func processPot(winners []GameResult, mainPot, pokerTableMinBet database.PokerCh maxRake = database.PokerChip(val[1]) } else if nbPlayers == 3 || nbPlayers == 4 { maxRake = database.PokerChip(val[2]) - } else if nbPlayers > 4 { + } else if nbPlayers >= 5 { maxRake = database.PokerChip(val[3]) } }