From 24774b4804542581606acd9725bbf43ae7d32186 Mon Sep 17 00:00:00 2001 From: evanpelle Date: Tue, 13 Jan 2026 20:14:23 -0800 Subject: [PATCH] Increase poll rate for matchmaking games from every 3s to 1s because people are not joining games in time --- src/client/Matchmaking.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/Matchmaking.ts b/src/client/Matchmaking.ts index 4f3f55933..73307d15d 100644 --- a/src/client/Matchmaking.ts +++ b/src/client/Matchmaking.ts @@ -183,7 +183,7 @@ export class MatchmakingModal extends BaseModal { this.connected = false; this.gameID = null; this.connect(); - this.gameCheckInterval = setInterval(() => this.checkGame(), 3000); + this.gameCheckInterval = setInterval(() => this.checkGame(), 1000); } protected onClose(): void {