make public games start every minute

This commit is contained in:
Evan
2025-01-05 13:40:18 -08:00
parent 4800e0dd29
commit 81d849dec1
+2 -2
View File
@@ -9,10 +9,10 @@ export abstract class DefaultServerConfig implements ServerConfig {
return 100
}
gameCreationRate(): number {
return 10 * 60 * 1000
return 1 * 60 * 1000
}
lobbyLifetime(): number {
return 10 * 120 * 1000
return 2 * 60 * 1000
}
}