From eff55af1b49eec0b7d6f7e195eef40de03137b3d Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Thu, 14 Sep 2023 12:06:02 -0700
Subject: [PATCH] models are rbxm

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

diff --git a/src/main.rs b/src/main.rs
index 309dd65..0429d30 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -154,7 +154,7 @@ fn download(map_list: Vec<u64>) -> BoxResult<()>{
     for map_id in map_list.iter() {
         std::process::Command::new("wget")
         .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))
         .spawn()?;
     }