commit bc237a242d52e156f0c559fdef9beb9ae6596aab
parent 19fceb6b49257c7d007dd70ec61323c80865d873
Author: n0tr1v <n0tr1v@protonmail.com>
Date: Fri, 15 Dec 2023 17:33:10 -0500
fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg/web/handlers/poker/poker.go b/pkg/web/handlers/poker/poker.go
@@ -973,7 +973,7 @@ END:
} else {
// If the player was not playing the game, must be booted if he's not eligible to play the next one.
- if p.isEligible(g.PokerTableMinBet) {
+ if !p.isEligible(g.PokerTableMinBet) {
playerShallBeBooted = true
}
}