commit 439e8846265bd20606217baa0944795a1b59e7a0
parent be070a04eec56a85ddb52c11725563853049b7a9
Author: n0tr1v <n0tr1v@protonmail.com>
Date: Tue, 5 Dec 2023 18:05:04 -0500
cleanup
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/pkg/web/handlers/poker.go b/pkg/web/handlers/poker.go
@@ -233,7 +233,6 @@ func (g *PokerGame) Deal(roomID string) {
if p.Bet < minBet {
msg := fmt.Sprintf("Need to bet %d", minBet-p.Bet)
PokerPubSub.Pub(roomUserTopic, ErrorMsgEvent{Message: msg})
- fmt.Println(msg)
continue
}
} else if evt.Call {