Skip to content

Commit

Permalink
Fixed region.template download path
Browse files Browse the repository at this point in the history
  • Loading branch information
louis-e authored Sep 20, 2024
1 parent 122c5f0 commit 444c6f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_processing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ pub fn generate_world(elements: Vec<ProcessedElement>, args: &Args, scale_factor

/// Downloads the region template file from a remote URL and saves it locally.
fn download_region_template(file_path: &str) -> Result<(), Box<dyn std::error::Error>> {
let url = "https://github.com/louis-e/arnis/raw/refs/heads/experimental-rust-dev/region.template";
let url = "https://github.com/louis-e/arnis/raw/refs/heads/main/region.template";

// Download the file
let response = get(url)?;
Expand Down

0 comments on commit 444c6f2

Please sign in to comment.