Add MDX aliases for modern creature models
This commit is contained in:
@@ -107,6 +107,14 @@ fn stage_loose_assets(
|
||||
}
|
||||
fs::copy(source, &destination)?;
|
||||
println!("Staging loose modern asset: {}", archive_path);
|
||||
if source
|
||||
.extension()
|
||||
.is_some_and(|extension| extension.eq_ignore_ascii_case("m2"))
|
||||
{
|
||||
let mdx_alias = destination.with_extension("mdx");
|
||||
fs::copy(source, &mdx_alias)?;
|
||||
println!("Staging WoW 3.3.5 model alias: {}", mdx_alias.display());
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user