What is overrides option in modpack? #334
-
I was reading code in subcommands/modpack/upgrade.rs and saw
Which then check for all mod files inside temp_dir and install them |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can see above the line you mentioned; ferium/src/subcommands/modpack/upgrade.rs Line 156 in 0304b52 Here, the contents of the modpack is unzipped to
These override files are config files that the modpack wants you to use. It might be the case that the user has modified some of these configs so they wouldn't want them to be overridden again when they upgrade, which is why the option exists. |
Beta Was this translation helpful? Give feedback.
You can see above the line you mentioned;
ferium/src/subcommands/modpack/upgrade.rs
Line 156 in 0304b52
Here, the contents of the modpack is unzipped to
temp_dir
.These override files are config files that the modpack wants you to use. It might be the case that the user has modified some of these configs so they wouldn't want them to be overridden again when they upgrade, which is why the option exists.