Don't try to find out blinds for stud games.

This commit is contained in:
Eratosthenes 2010-03-04 11:50:03 -05:00
parent a3cab472b1
commit 519494878e

View File

@ -181,7 +181,7 @@ class PokerStars(HandHistoryConverter):
else:
info['type'] = 'tour'
if info['limitType'] == 'fl' and info['bb'] != None and info['type'] == 'ring':
if info['limitType'] == 'fl' and info['bb'] is not None and info['type'] == 'ring' and info['base'] != 'stud':
info['sb'] = Lim_Blinds[mg['BB']][0]
info['bb'] = Lim_Blinds[mg['BB']][1]