Merge pull request 'dtmm: Enforce skipping packages for non-bundled mods' (#162) from issue/non-bundled-packages into master
All checks were successful
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
All checks were successful
build/msvc Build for the target platform: msvc
build/linux Build for the target platform: linux
Reviewed-on: #162
This commit is contained in:
commit
169f4deea9
1 changed files with 4 additions and 0 deletions
|
@ -269,6 +269,10 @@ fn extract_mod_config<R: Read + Seek>(archive: &mut ZipArchive<R>) -> Result<(Mo
|
|||
|
||||
cfg.resources = resources;
|
||||
|
||||
// Enforce that packages are skipped
|
||||
cfg.bundled = false;
|
||||
cfg.packages = vec![];
|
||||
|
||||
Ok((cfg, root))
|
||||
} else {
|
||||
let root = name
|
||||
|
|
Loading…
Add table
Reference in a new issue