diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index 1f8ecbeb..407772ed 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -107,7 +107,7 @@ class Everleaf(HandHistoryConverter): print "DEBUG: re_HandInfo.search failed: '%s'" %(hand.string) hand.handid = m.group('HID') hand.tablename = m.group('TABLE') - hand.max_seats = 6 # assume 6-max unless we have proof it's a larger/smaller game, since everleaf doesn't give seat max info + hand.maxseats = 6 # assume 6-max unless we have proof it's a larger/smaller game, since everleaf doesn't give seat max info # These work, but the info is already in the Hand class - should be used for tourneys though. # m.group('SB') # m.group('BB') @@ -128,7 +128,7 @@ class Everleaf(HandHistoryConverter): seatnum = int(a.group('SEAT')) hand.addPlayer(seatnum, a.group('PNAME'), a.group('CASH')) if seatnum > 6: - hand.max_seats = 10 # everleaf currently does 2/6/10 games, so if seats > 6 are in use, it must be 10-max. + hand.maxseats = 10 # everleaf currently does 2/6/10 games, so if seats > 6 are in use, it must be 10-max. # TODO: implement lookup list by table-name to determine maxes, then fall back to 6 default/10 here, if there's no entry in the list?