From ccfc55eec37f7516bd61f850e58ea7020749909c Mon Sep 17 00:00:00 2001 From: Worros Date: Thu, 9 Sep 2010 16:27:31 +0800 Subject: [PATCH] iPoker: Another minot update to determineGameType --- pyfpdb/iPokerToFpdb.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyfpdb/iPokerToFpdb.py b/pyfpdb/iPokerToFpdb.py index a2b2b829..900b28ed 100644 --- a/pyfpdb/iPokerToFpdb.py +++ b/pyfpdb/iPokerToFpdb.py @@ -147,11 +147,12 @@ or None if we fail to get the info """ limits = { 'No Limit':'nl', 'Limit':'fl' } games = { # base, category - 'Holdem' : ('hold','holdem'), - 'Holdem Tournament' : ('hold','holdem') } + '7 Card Stud L' : ('stud','studhilo'), + } if 'LIMIT' in mg: self.info['limitType'] = limits[mg['LIMIT']] + self.info['limitType'] = 'fl' if 'GAME' in mg: (self.info['base'], self.info['category']) = games[mg['GAME']] if 'SB' in mg: