From 85536257382d995cea85b43cde769688ef7fea40 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Thu, 28 Sep 2023 22:05:25 -0700
Subject: [PATCH] change texture download path

---
 src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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<std::path::PathBuf>) -> BoxResult<()>{
     let processes_result:Result<Vec<_>, _>=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();