change default config path

This commit is contained in:
2026-06-23 22:54:58 +02:00
parent 64b2f04f8f
commit c4f3c129f1

View File

@ -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(),
}
}