Skip to content

Commit

Permalink
Reduce time between matchmaking checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Torom committed Jul 13, 2023
1 parent 71ec35e commit 60255ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def stop(self):

def run(self) -> None:
while self.is_running:
event_received = self.changed_event.wait(5.0)
event_received = self.changed_event.wait(1.0)
if not event_received:
self._check_matchmaking()
continue
Expand Down

0 comments on commit 60255ae

Please sign in to comment.