allow loading client args from config

This commit is contained in:
2023-09-14 10:32:03 +02:00
parent a1004405ca
commit d47ebbcb28
3 changed files with 8 additions and 4 deletions

View File

@@ -23,6 +23,7 @@ pub fn save_value(config_path: PathBuf, key: &str, value: bool) {
"skip_self_update" => config.skip_self_update = value,
"download_bonus_content" => config.download_bonus_content = value,
"ask_bonus_content" => config.ask_bonus_content = value,
"force_update" => config.force_update = value,
_ => (),
}
save(config_path, config);