4.14.2: Loading a mod folder only loads contained .wad files
Moderator: GZDoom Developers
Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.
- Ihavequestions
- Posts: 201
- Joined: Mon Jul 12, 2021 1:45 pm
- Graphics Processor: nVidia with Vulkan support
4.14.2: Loading a mod folder only loads contained .wad files
I've noticed in the current stable version that specifying a mod folder via -file or Autoload path will load the contained .wad files but ignore any .pk3 or other files. The error occurs on both Linux and Windows.
Re: 4.14.2: Loading a mod folder only loads contained .wad files
The game loads the folder as if it were a .pk3 file, not as if it were supposed to load all the files contained within. So the same rules apply. You can't nest pk3 files, and thus you can't nest them in a folder in this case either.
A workaround is to simply name them all .wad (GZDoom only seems to care about the extension in this case), load each file separately, or merge the contents of the files together. In any case, this isn't going to change.
A workaround is to simply name them all .wad (GZDoom only seems to care about the extension in this case), load each file separately, or merge the contents of the files together. In any case, this isn't going to change.
- Ihavequestions
- Posts: 201
- Joined: Mon Jul 12, 2021 1:45 pm
- Graphics Processor: nVidia with Vulkan support
Re: 4.14.2: Loading a mod folder only loads contained .wad files
Because GZDoom doesn't know that a folder is supposed to be a loose collection of mods, also this has been argued to death with Graf and he's [No]'d it every time that I can recall.
GZDoom treats the folder as a mod itself, so just throwing archives at it doesn't work because it thinks you're loading a single mod that happens to have .wad files nested in.
And the only reason the .wad file thing works is to allow you to download an /idgames zip file and run it directly without unzipping it.
GZDoom treats the folder as a mod itself, so just throwing archives at it doesn't work because it thinks you're loading a single mod that happens to have .wad files nested in.
And the only reason the .wad file thing works is to allow you to download an /idgames zip file and run it directly without unzipping it.
- Ihavequestions
- Posts: 201
- Joined: Mon Jul 12, 2021 1:45 pm
- Graphics Processor: nVidia with Vulkan support
Re: 4.14.2: Loading a mod folder only loads contained .wad files
Well, okay. Thanks for the explanation.