make lobbies more frequent

This commit is contained in:
Evan
2025-03-06 10:57:06 -08:00
parent 1a9176779f
commit 1dc7864617
+2 -2
View File
@@ -30,9 +30,9 @@ export abstract class DefaultServerConfig implements ServerConfig {
}
gameCreationRate(highTraffic: boolean): number {
if (highTraffic) {
return 30 * 1000;
return 20 * 1000;
} else {
return 60 * 1000;
return 50 * 1000;
}
}
lobbyLifetime(highTraffic: boolean): number {