aboutsummaryrefslogtreecommitdiff
path: root/server
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-22 00:05:39 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-22 00:05:47 +0200
commit7a1bd351b42e69b225e0938f232b36be2a23470c (patch)
treeb3db6cff289fe1b20746fe72d6025a181e25a9c7 /server
parent007cd84766a196d69bbfe6412d6eeab507861119 (diff)
downloadhurrycurry-7a1bd351b42e69b225e0938f232b36be2a23470c.tar
hurrycurry-7a1bd351b42e69b225e0938f232b36be2a23470c.tar.bz2
hurrycurry-7a1bd351b42e69b225e0938f232b36be2a23470c.tar.zst
add new server options as game settings
Diffstat (limited to 'server')
-rw-r--r--server/registry/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/registry/src/main.rs b/server/registry/src/main.rs
index 87c0bbe1..5bb7a0a3 100644
--- a/server/registry/src/main.rs
+++ b/server/registry/src/main.rs
@@ -96,7 +96,7 @@ impl Registry {
let mut interval = interval(Duration::from_secs(
var("UPDATE_INTERVAL")
.map(|e| e.parse::<u64>().unwrap())
- .unwrap_or(60),
+ .unwrap_or(10),
));
loop {
interval.tick().await;