From 070091472c70bba5b355370dbd5a753e657cced3 Mon Sep 17 00:00:00 2001 From: Matt Turnbull Date: Tue, 16 Dec 2008 22:03:13 +0000 Subject: [PATCH] first BB is treated as a call & raise of sb, so if folded round to bb, it's an uncalled bet and he collects pot --- pyfpdb/Hand.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyfpdb/Hand.py b/pyfpdb/Hand.py index f49449c0..2e6a27eb 100644 --- a/pyfpdb/Hand.py +++ b/pyfpdb/Hand.py @@ -296,9 +296,15 @@ Add a raise on [street] by [player] to [amountTo] # the bb gets called by out-of-blinds posts; but sb+bb only calls bb if uncalled == Decimal(act[3]): # a bb is already posted calls = calls + [Decimal(act[3])] + elif 0 < uncalled < Decimal(act[3]): # a sb is already posted, btw wow python can do a 0 and max(calls+[0]) < uncalled: