Skip to content

Commit 52b7448

Browse files
committed
integrate DLC map properly
1 parent edb833b commit 52b7448

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
members = ["astro_mod_integrator", "astro_modloader"]
33

44
[workspace.package]
5-
version = "0.1.13"
5+
version = "0.1.14"
66
authors = ["AstroTechies, localcc, konsti219"]
77
description = "Astroneer Modloader"
88

astro_mod_integrator/src/handlers/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ lazy_static! {
1010
static ref GAME_REGEX: Regex = Regex::new(r"^/Game/").unwrap();
1111
}
1212

13-
pub(crate) static MAP_PATHS: [&str; 2] = [
13+
pub(crate) static MAP_PATHS: [&str; 3] = [
1414
"Astro/Content/Maps/Staging_T2.umap",
1515
"Astro/Content/Maps/Staging_T2_PackedPlanets_Switch.umap",
16-
//"Astro/Content/Maps/TutorialMoon_Prototype_v2.umap", // Tutorial not integrated for performance
16+
"Astro/Content/U32_Expansion/U32_Expansion.umap"
1717
];

0 commit comments

Comments
 (0)