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.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user