From c4f3c129f108bb0b8b845b09ada7cda2ce0428c9 Mon Sep 17 00:00:00 2001 From: tomoron Date: Tue, 23 Jun 2026 22:54:58 +0200 Subject: [PATCH] change default config path --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index da2ceeb..42758a6 100644 --- a/src/config.rs +++ b/src/config.rs @@ -8,7 +8,7 @@ pub struct Config { impl Config { pub fn load() -> Self { Self { - config_path: env::var("DMM_CONFIG_PATH").unwrap_or_else(|_| "/raid/mc_servers".to_string()), + config_path: env::var("DMM_CONFIG_PATH").unwrap_or_else(|_| "/raid/crit/mc_servers".to_string()), docker_image: "itzg/minecraft-server".to_string(), } }