diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-08-08 12:09:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 12:09:40 +0200 |
commit | 3cab2a7852fdc4663c8c7f4df6a52b831e610e92 (patch) | |
tree | f23a4dd3c3cf9648cf3270a78809f36718c0e50d /src-tauri/src/constants.rs | |
parent | 863a7fbedfb8d443a528e7475edb5de541499ce9 (diff) | |
download | FlightCore-3cab2a7852fdc4663c8c7f4df6a52b831e610e92.tar.gz FlightCore-3cab2a7852fdc4663c8c7f4df6a52b831e610e92.zip |
feat: Prevent installation of Vanilla+ mod (#996)
as it has special installation requirements that makes it not installable like common Northstar mods.
Diffstat (limited to 'src-tauri/src/constants.rs')
-rw-r--r-- | src-tauri/src/constants.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src-tauri/src/constants.rs b/src-tauri/src/constants.rs index 47eeef19..3ad2d6e8 100644 --- a/src-tauri/src/constants.rs +++ b/src-tauri/src/constants.rs @@ -26,6 +26,9 @@ pub const BLACKLISTED_MODS: [&str; 3] = [ "ebkr-r2modman", ]; +/// List of Thunderstoremods that have some specific install requirements that makes them different from standard mods +pub const MODS_WITH_SPECIAL_REQUIREMENTS: [&str; 1] = ["NanohmProtogen-VanillaPlus"]; + /// Order in which the sections for release notes should be displayed pub const SECTION_ORDER: [&str; 11] = [ "feat", "fix", "docs", "style", "refactor", "build", "test", "i18n", "ci", "chore", "other", |