Changeset 19
- Timestamp:
- 02/04/08 06:47:18 (11 months ago)
- Files:
-
- 1 modified
-
holdemtable.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
holdemtable.py
r18 r19 121 121 else: self.__hand_count += 1 122 122 #Next phase of blinds 123 if self.__hand_count % self.__round_length == 0: 123 if self.__hand_count % self.__round_length == 0 and\ 124 self.__hand_count/self.__round_length < len(self.__blind_structure): 124 125 #Next blind phase 125 126 self.__blinds = self.__blind_structure[self.__hand_count/self.__round_length]
