* Old Stars HHs don't display max seats. Added regression-test-file showing this and handling in the Stars HHC

This commit is contained in:
Chaz
2010-11-24 14:49:39 -06:00
parent 8026ba256a
commit b820cd4895
2 changed files with 43 additions and 1 deletions
+1 -1
View File
@@ -298,7 +298,7 @@ class PokerStars(HandHistoryConverter):
if key == 'BUTTON':
hand.buttonpos = info[key]
if key == 'MAX':
hand.maxseats = int(info[key])
if info[key]: hand.maxseats = int(info[key])
if key == 'MIXED':
hand.mixed = self.mixes[info[key]] if info[key] is not None else None