From 4c37877c7fea98e3911cb25280be9f041d22b94c Mon Sep 17 00:00:00 2001 From: Gerko de Roo Date: Tue, 2 Mar 2010 21:44:07 +0100 Subject: [PATCH] Uncalled bet needs to be subtracted from the collectees. the self.collectees is used in the derived stats. The uncalled part of the bet was added to the players profit. --- pyfpdb/PartyPokerToFpdb.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pyfpdb/PartyPokerToFpdb.py b/pyfpdb/PartyPokerToFpdb.py index 5fdeae0c..c4f73813 100755 --- a/pyfpdb/PartyPokerToFpdb.py +++ b/pyfpdb/PartyPokerToFpdb.py @@ -260,6 +260,7 @@ class PartyPoker(HandHistoryConverter): for i,v in enumerate(self.collected): if v[0] in self.pot.returned: self.collected[i][1] = Decimal(v[1]) - self.pot.returned[v[0]] + self.collectees[v[0]] -= self.pot.returned[v[0]] return origTotalPot() return totalPot instancemethod = type(hand.totalPot)