dkforest

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

commit 5e5d49d0e4802a0e5e025ccdba5c902e802967f8
parent 6c4a62cbe31f9b072891aa3660643bd0f7eda96b
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Mon, 25 Dec 2023 12:25:58 -0500

cleanup

Diffstat:
Mpkg/web/handlers/poker/poker.go | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/pkg/web/handlers/poker/poker.go b/pkg/web/handlers/poker/poker.go @@ -1529,7 +1529,6 @@ func processPot(winners []gameResult, mainPot, pokerTableMinBet database.PokerCh groupPlayers := group.players groupPlayersLen := len(groupPlayers) handStr := utils.Ternary(isOnlyPlayerAlive, "Only player alive", poker.RankString(group.handScore)) - // Multiple winners, split pot calcExpectedSplit := func(mainPot database.PokerChip, allInCount int) database.PokerChip { return mainPot / utils.MaxInt(database.PokerChip(groupPlayersLen-allInCount), 1) }