Fulltilt nlhe working, more razz stuff

Everleaf still broken - need to create/move button regex to new abstract
method
This commit is contained in:
Worros
2009-02-25 02:05:51 +09:00
parent 7fd90ce760
commit a4f0e9a1fd
2 changed files with 12 additions and 9 deletions
+4 -4
View File
@@ -39,10 +39,10 @@ class Hand:
self.gametype = gametype
self.string = string
#if gametype[1] == "hold" or self.gametype[1] == "omaha":
self.streetList = ['PREFLOP','FLOP','TURN','RIVER'] # a list of the observed street names in order
#elif self.gametype[1] == "razz" or self.gametype[1] == "stud" or self.gametype[1] == "stud8":
#self.streetList = ['ANTES','3RD','4TH','5TH','6TH','7TH'] # a list of the observed street names in order
if gametype[1] == "hold" or self.gametype[1] == "omaha":
self.streetList = ['PREFLOP','FLOP','TURN','RIVER'] # a list of the observed street names in order
elif self.gametype[1] == "razz" or self.gametype[1] == "stud" or self.gametype[1] == "stud8":
self.streetList = ['ANTES','THIRD','FORTH','FIFTH','SIXTH','SEVENTH'] # a list of the observed street names in order
self.handid = 0
self.sb = gametype[3]