Skip to content

Commit

Permalink
888Poker fixed the uncalled bets problem for walks. Unclear at this t…
Browse files Browse the repository at this point in the history
…ime when it was fixed so picked an arbitrary date.
  • Loading branch information
ChazDazzle committed Jun 27, 2023
1 parent 0510322 commit b9c7714
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyfpdb/PacificPokerToFpdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ def readHandInfo(self, hand):
datetimestr = "%s/%s/%s %s:%s:%s" % (a.group('Y'), a.group('M'),a.group('D'),a.group('H'),a.group('MIN'),a.group('S'))
hand.startTime = datetime.datetime.strptime(datetimestr, "%Y/%m/%d %H:%M:%S")
hand.startTime = HandHistoryConverter.changeTimezone(hand.startTime, "ET", "UTC")
hand.newFormat = datetime.datetime.strptime('20220908000000','%Y%m%d%H%M%S') #this is a guess
hand.newFormat = HandHistoryConverter.changeTimezone(hand.newFormat, "ET", "UTC")
if key == 'HID':
hand.handid = info[key]
if key == 'TOURNO' and info['TOURNO'] != None:
Expand Down Expand Up @@ -350,7 +352,8 @@ def readBringIn(self, hand):
hand.addBringIn(m.group('PNAME'), m.group('BRINGIN'))

def readBlinds(self, hand):
hand.setUncalledBets(True)
if hand.startTime < hand.newFormat:
hand.setUncalledBets(True)
liveBlind, hand.allInBlind = True, False
for a in self.re_PostSB.finditer(hand.handText):
if a.group('PNAME') in hand.stacks:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#Game No : 678485555
***** 888poker Snap Poker Hand History for Game 678485555 *****
$0.02/$0.05 Blinds No Limit Holdem - *** 27 06 2023 12:02:42
Table Kazan 6 Max (Real Money)
Seat 4 is the button
Total number of players : 6
Seat 1: Player9 ( $2.02 )
Seat 2: Player8 ( $1.55 )
Seat 4: Player7 ( $5 )
Seat 6: Hero ( $5.74 )
Seat 7: Player6 ( $3.52 )
Seat 9: Player5 ( $3.62 )
Hero posts small blind [$0.02]
Player6 posts big blind [$0.05]
** Dealing down cards **
Dealt to Hero [ 6d, 5c ]
Player5 folds
Player9 folds
Player8 folds
Player7 folds
Hero folds
** Summary **
Player6 did not show his hand
Player6 collected [ $0.04 ]

0 comments on commit b9c7714

Please sign in to comment.