Change blind semantics slightly to improve accounting.
This should improve the case where a second small blind is added. The player committing the second sb still has a 1xsb accouting error
This commit is contained in:
@@ -294,7 +294,7 @@ class PokerStars(HandHistoryConverter):
|
||||
hand.addBlind(a.group('PNAME'), 'small blind', a.group('SB'))
|
||||
count = 1
|
||||
else:
|
||||
hand.addAnte(a.group('PNAME'), a.group('SB'))
|
||||
hand.addBlind(a.group('PNAME'), 'secondsb', a.group('SB'))
|
||||
except: # no small blind
|
||||
hand.addBlind(None, None, None)
|
||||
for a in self.re_PostBB.finditer(hand.handText):
|
||||
|
||||
Reference in New Issue
Block a user