Ugly fix to ugly edge case where winner voluntarily showed cards.
This commit is contained in:
parent
1ec6a36ece
commit
30de5142db
|
@ -268,7 +268,8 @@ class Fulltilt(HandHistoryConverter):
|
||||||
|
|
||||||
players = []
|
players = []
|
||||||
for a in m:
|
for a in m:
|
||||||
hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), a.group('CASH'))
|
if not re.search(" collected", a.group('PNAME')):
|
||||||
|
hand.addPlayer(int(a.group('SEAT')), a.group('PNAME'), a.group('CASH'))
|
||||||
|
|
||||||
def markStreets(self, hand):
|
def markStreets(self, hand):
|
||||||
# PREFLOP = ** Dealing down cards **
|
# PREFLOP = ** Dealing down cards **
|
||||||
|
|
Loading…
Reference in New Issue
Block a user