From e41c63f6ee0fa773494a8b243af3bcc6d5103dca Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Thu, 4 Mar 2010 14:32:48 +0100 Subject: [PATCH] When small blind raises here the addRaiseBy was generating money. One player on small blind with total $2.25, commited $2.27 to the pot. --- pyfpdb/PartyPokerToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 5cb170e6..94acfd3f 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -433,7 +433,7 @@ class PartyPoker(HandHistoryConverter): if street == 'PREFLOP' and \ playerName in [item[0] for item in hand.actions['BLINDSANTES'] if item[2]!='ante']: # preflop raise from blind - hand.addRaiseBy( street, playerName, amount ) + hand.addCallandRaise( street, playerName, amount ) else: hand.addCallandRaise( street, playerName, amount ) elif actionType == 'calls':