This commit is contained in:
Jonas Zeunert
2022-08-30 19:00:21 +02:00
parent 13c9d54ec5
commit ac4e70c0c4
2 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

@@ -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