FTP: Badugi support
This commit is contained in:
parent
55b272435d
commit
4b15ca0cad
|
@ -50,7 +50,7 @@ class Fulltilt(HandHistoryConverter):
|
|||
(Ante\s\$?(?P<ANTE>[.0-9]+)\s)?-\s
|
||||
[%(LS)s]?(?P<CAP>[.0-9]+\sCap\s)?
|
||||
(?P<LIMIT>(No\sLimit|Pot\sLimit|Limit))?\s
|
||||
(?P<GAME>(Hold\'em|Omaha\sHi|Omaha\sH/L|7\sCard\sStud|Stud\sH/L|Razz|Stud\sHi|2-7\sTriple\sDraw|5\sCard\sDraw))
|
||||
(?P<GAME>(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']:
|
||||
|
|
Loading…
Reference in New Issue
Block a user