From aa0de0344dc3aa485de6f69000555074eba6a9df Mon Sep 17 00:00:00 2001 From: Eric Blade Date: Sun, 7 Nov 2010 20:12:21 -0500 Subject: [PATCH] finish fix for 4-max --- pyfpdb/EverleafToFpdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/EverleafToFpdb.py b/pyfpdb/EverleafToFpdb.py index c24e3329..586d36d9 100755 --- a/pyfpdb/EverleafToFpdb.py +++ b/pyfpdb/EverleafToFpdb.py @@ -145,7 +145,7 @@ or None if we fail to get the info """ logging.debug("HID %s, Table %s" % (m.group('HID'), m.group('TABLE'))) hand.handid = m.group('HID') hand.tablename = m.group('TABLE') - hand.maxseats = 6 # assume 6-max unless we have proof it's a larger/smaller game, since everleaf doesn't give seat max info + hand.maxseats = 4 # assume 4-max unless we have proof it's a larger/smaller game, since everleaf doesn't give seat max info currencies = { u'€':'EUR', '$':'USD', '':'T$', None:'T$' } mg = m.groupdict()