diff --git a/GameState.py b/GameState.py index c6bfcbd..52297bc 100644 --- a/GameState.py +++ b/GameState.py @@ -4,6 +4,7 @@ import config from lamps.LampGroup import PLAYER_LAMPS from lamps.Lamp import CREDIT from itertools import cycle +from time import sleep class GameState: players = None diff --git a/config.py b/config.py index 5b8eef9..1fb5d92 100644 --- a/config.py +++ b/config.py @@ -28,9 +28,9 @@ ORANGE_SPECIAL = SpecialEvent.points ORANGE_SPECIAL_BANK = ORANGE_SPECIAL_BANK_OPTIONS["BOTH"] ## Tech config LOG_LEVEL=logging.DEBUG -WAIT_TIME_TO_RESET_SECONDS = 0.15 +WAIT_TIME_TO_RESET_SECONDS = 1 MAX_NETWORK_RETRIES = 10 NETWORK_SLEEP_TIME_SECONDS = 0.1 BANK_SLEEP_TIME = 0.1 BONUS_SLEEP_TIME = 0.1 -PLAYER_CHOOSE_INTERVAL = 1 +PLAYER_CHOOSE_INTERVAL = 2