dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit bc237a242d52e156f0c559fdef9beb9ae6596aab
parent 19fceb6b49257c7d007dd70ec61323c80865d873
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Fri, 15 Dec 2023 17:33:10 -0500

fix

Diffstat:
Mpkg/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 @@ -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 } }