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:
Eric Blade 2010-10-07 08:34:36 -04:00
parent 7615f2429b
commit 120ebf4b40

View File

@ -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):