recognise and store knockout and bounty

This commit is contained in:
steffen123
2010-08-02 13:53:50 +02:00
parent 388097a412
commit 9ad275e11c
4 changed files with 9 additions and 6 deletions
+2
View File
@@ -83,6 +83,7 @@ class Hand(object):
self.isRebuy = False
self.isAddOn = False
self.isKO = False
self.koBounty = None
self.isMatrix = False
self.isShootout = False
self.added = None
@@ -168,6 +169,7 @@ class Hand(object):
("IS REBUY", self.isRebuy),
("IS ADDON", self.isAddOn),
("IS KO", self.isKO),
("KO BOUNTY", self.koBounty),
("IS MATRIX", self.isMatrix),
("IS SHOOTOUT", self.isShootout),
("TOURNEY COMMENT", self.tourneyComment),