models are rbxm

This commit is contained in:
Quaternions 2023-09-14 12:06:02 -07:00
parent 0d05cc9996
commit eff55af1b4

View File

@ -154,7 +154,7 @@ fn download(map_list: Vec<u64>) -> BoxResult<()>{
for map_id in map_list.iter() { for map_id in map_list.iter() {
std::process::Command::new("wget") std::process::Command::new("wget")
.args(shared_args) .args(shared_args)
.arg(format!("maps/unprocessed/{}.rbxl",map_id)) .arg(format!("maps/unprocessed/{}.rbxm",map_id))
.arg(format!("https://assetdelivery.roblox.com/v1/asset/?ID={}",map_id)) .arg(format!("https://assetdelivery.roblox.com/v1/asset/?ID={}",map_id))
.spawn()?; .spawn()?;
} }