Increase poll rate for matchmaking games from every 3s to 1s because people are not joining games in time

This commit is contained in:
evanpelle
2026-01-13 20:14:23 -08:00
parent 42c944c9cc
commit 24774b4804
+1 -1
View File
@@ -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 {