diff --git a/pyfpdb/FulltiltToFpdb.py b/pyfpdb/FulltiltToFpdb.py index 30a17427..756dd494 100755 --- a/pyfpdb/FulltiltToFpdb.py +++ b/pyfpdb/FulltiltToFpdb.py @@ -50,7 +50,7 @@ class Fulltilt(HandHistoryConverter): (Ante\s\$?(?P[.0-9]+)\s)?-\s [%(LS)s]?(?P[.0-9]+\sCap\s)? (?P(No\sLimit|Pot\sLimit|Limit))?\s - (?P(Hold\'em|Omaha\sHi|Omaha\sH/L|7\sCard\sStud|Stud\sH/L|Razz|Stud\sHi|2-7\sTriple\sDraw|5\sCard\sDraw)) + (?P(Hold\'em|Omaha\sHi|Omaha\sH/L|7\sCard\sStud|Stud\sH/L|Razz|Stud\sHi|2-7\sTriple\sDraw|5\sCard\sDraw|Badugi)) ''' % substitutions, re.VERBOSE) re_SplitHands = re.compile(r"\n\n\n+") re_TailSplitHands = re.compile(r"(\n\n+)") @@ -198,6 +198,7 @@ class Fulltilt(HandHistoryConverter): 'Stud H/L' : ('stud','studhilo'), '2-7 Triple Draw' : ('draw','27_3draw'), '5 Card Draw' : ('draw','fivedraw'), + 'Badugi' : ('draw','badugi'), } currencies = { u'€':'EUR', '$':'USD', '':'T$' } if mg['CAP']: