fix that it creates a new TT for each tourney when maxseats is unknown.

This commit is contained in:
steffen123 2010-08-25 06:37:22 +02:00
parent c73e5b6d9b
commit b6e59b54de
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ class Hand(object):
self.dbid_gt = 0
self.tablename = ""
self.hero = ""
self.maxseats = None
self.maxseats = 0
self.counted_seats = 0
self.buttonpos = 0

View File

@ -77,7 +77,7 @@ class TourneySummary(object):
self.buyin = None
self.fee = None
self.hero = None
self.maxseats = None
self.maxseats = 0
self.entries = 0
self.speed = "Normal"
self.prizepool = 0 # Make it a dict in order to deal (eventually later) with non-money winnings : {'MONEY' : amount, 'OTHER' : Value ??}