bump version, make lobby 1 minute

This commit is contained in:
evanpelle
2024-12-24 13:19:47 -08:00
parent 33b3255a38
commit bd1eb97201
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -29,7 +29,7 @@
<body>
<div class="content">
<h1 class="text-7xl sm:text-5xl md:text-6xl lg:text-7xl mb-2">OpenFront.io</h1>
<h2 class="text-3xl sm:text-4xl md:text-5xl lg:text-6xl mb-4">(v0.13.0)</h2>
<h2 class="text-3xl sm:text-4xl md:text-5xl lg:text-6xl mb-4">(v0.13.1)</h2>
<div class="flex justify-center items-start">
<div class="w-full max-w-3xl p-4 space-y-4">
<br />
+2 -2
View File
@@ -166,10 +166,10 @@ export abstract class DefaultConfig implements Config {
return 100
}
gameCreationRate(): number {
return 10 * 60 * 1000
return 1 * 60 * 1000
}
lobbyLifetime(): number {
return 10 * 120 * 1000
return 1 * 120 * 1000
}
theme(): Theme { return pastelTheme; }