home · contact · privacy
Minor fixes.
[plomrogue2-experiments] / new2 / plomrogue / io.py
index 12e74500eff1b7582d2a6a81601696e8076d4833..d740f8c42972879e9f911d21ba5edf5e6d9c1e84 100644 (file)
@@ -14,7 +14,7 @@ class GameIO():
         """Handle commands coming through queue q, run game, send results back."""
         while True:
             try:
-                command, connection_id = q.get(timeout=1)
+                command, connection_id = q.get(timeout=0.001)
                 self.handle_input(connection_id, command)
             except queue.Empty:
                 self.game.run_tick()