diff --git a/GameState.py b/GameState.py index be2beaa..301015a 100644 --- a/GameState.py +++ b/GameState.py @@ -66,13 +66,13 @@ class GameState: while True: for _ in range(20): random_group = random.choice(all_cabinet_lamps) - random_group.toggleRandom(0.1) + random_group.toggleRandom(0.2) for lamps in all_cabinet_lamps: for _ in lamps.lamps: lamps.cycle() if self.isIdle.is_set(): return - time.sleep(0.05) + time.sleep(0.1) if self.isIdle.is_set(): return