readSupportedGames should return [ring/tour, base-type, limit-structure], not [ring/tour, category, limit-structure]
add PL holdem/omaha tourney support for everleaf
This commit is contained in:
parent
7615f2429b
commit
120ebf4b40
|
@ -66,14 +66,16 @@ class Everleaf(HandHistoryConverter):
|
|||
self.re_SitsOut = re.compile(ur"^%s sits out" % player_re, re.MULTILINE)
|
||||
|
||||
def readSupportedGames(self):
|
||||
return [["ring", "hold", "nl"],
|
||||
return [
|
||||
["ring", "hold", "nl"],
|
||||
["ring", "hold", "pl"],
|
||||
["ring", "hold", "fl"],
|
||||
["ring", "studhi", "fl"],
|
||||
["ring", "omahahi", "pl"],
|
||||
["ring", "omahahilo", "pl"],
|
||||
["ring", "stud", "fl"],
|
||||
#["ring", "omahahi", "pl"],
|
||||
#["ring", "omahahilo", "pl"],
|
||||
["tour", "hold", "nl"],
|
||||
["tour", "hold", "fl"]
|
||||
["tour", "hold", "fl"],
|
||||
["tour", "hold", "pl"]
|
||||
]
|
||||
|
||||
def determineGameType(self, handText):
|
||||
|
|
Loading…
Reference in New Issue
Block a user