diff --git a/src/main.rs b/src/main.rs index 02fe465..df1cf2e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -279,7 +279,7 @@ fn download_textures(paths: Vec) -> BoxResult<()>{ let processes_result:Result, _>=texture_list.iter().map(|asset_id|{ std::process::Command::new("wget") .args(shared_args) - .arg(format!("textures/{}",asset_id)) + .arg(format!("textures/unprocessed/{}",asset_id)) .arg(format!("https://assetdelivery.roblox.com/v1/asset/?ID={}",asset_id)) .spawn() }).collect();