HUD fix for tournaments. Table name storage.
This commit is contained in:
parent
9100ba814c
commit
6cb956c5fd
|
@ -617,6 +617,8 @@ class HoldemOmahaHand(Hand):
|
|||
# which then invokes a 'addXXX' callback
|
||||
if builtFrom == "HHC":
|
||||
hhc.readHandInfo(self)
|
||||
if self.gametype['type'] == 'tour':
|
||||
self.tablename = "%s %s" % (self.tourNo, self.tablename)
|
||||
hhc.readPlayerStacks(self)
|
||||
hhc.compilePlayerRegexs(self)
|
||||
hhc.markStreets(self)
|
||||
|
@ -912,6 +914,8 @@ class DrawHand(Hand):
|
|||
# Populate the draw hand.
|
||||
if builtFrom == "HHC":
|
||||
hhc.readHandInfo(self)
|
||||
if self.gametype['type'] == 'tour':
|
||||
self.tablename = "%s %s" % (self.tourNo, self.tablename)
|
||||
hhc.readPlayerStacks(self)
|
||||
hhc.compilePlayerRegexs(self)
|
||||
hhc.markStreets(self)
|
||||
|
@ -1106,6 +1110,8 @@ class StudHand(Hand):
|
|||
# which then invokes a 'addXXX' callback
|
||||
if builtFrom == "HHC":
|
||||
hhc.readHandInfo(self)
|
||||
if self.gametype['type'] == 'tour':
|
||||
self.tablename = "%s %s" % (self.tourNo, self.tablename)
|
||||
hhc.readPlayerStacks(self)
|
||||
hhc.compilePlayerRegexs(self)
|
||||
hhc.markStreets(self)
|
||||
|
|
Loading…
Reference in New Issue
Block a user