Fix Everleaf to start parsing 7 Card Stud games

Still missing readAntes
This commit is contained in:
Worros
2009-03-11 00:57:13 +09:00
parent e87118e9ae
commit 88cadd36ad
3 changed files with 14 additions and 12 deletions
+3 -2
View File
@@ -148,9 +148,10 @@ class HandHistoryConverter(threading.Thread):
return
hand = None
if gametype['game'] in ("hold", "omahahi"):
if gametype['GAME'] in ("hold", "omahahi"):
logging.debug("hand = Hand.HoldemOmahaHand(self, self.sitename, gametype, handtext)")
hand = Hand.HoldemOmahaHand(self, self.sitename, gametype, handtext)
elif gametype['game'] in ("razz","stud","stud8"):
elif gametype['GAME'] in ("razz","studhi","stud8"):
hand = Hand.StudHand(self, self.sitename, gametype, handtext)
if hand: