diff options
author | Rémy Raes <raes.remy@gmail.com> | 2024-07-30 00:40:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 00:40:59 +0200 |
commit | 65516328610c136db00b644d06bdcf98912ddf70 (patch) | |
tree | 6996a716dbc392850acd525f4a9acf960325f36d /primedev/mods/autodownload/moddownloader.h | |
parent | c4055830dd03ab3df11071bdf1f1f6410c79e055 (diff) | |
download | NorthstarLauncher-65516328610c136db00b644d06bdcf98912ddf70.tar.gz NorthstarLauncher-65516328610c136db00b644d06bdcf98912ddf70.zip |
Only fetch MAD manifesto on server join (#751)
Previously, the verified mods manifesto was fetched on game start without checking if the verified mod feature is enabled Squirrel-side; with this, the manifesto is only fetched when the user wants to download a mod (meaning they enabled the feature beforehand).
Diffstat (limited to 'primedev/mods/autodownload/moddownloader.h')
-rw-r--r-- | primedev/mods/autodownload/moddownloader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/primedev/mods/autodownload/moddownloader.h b/primedev/mods/autodownload/moddownloader.h index 0d851e2f..98fc27ae 100644 --- a/primedev/mods/autodownload/moddownloader.h +++ b/primedev/mods/autodownload/moddownloader.h @@ -116,6 +116,8 @@ public: enum ModInstallState { + MANIFESTO_FETCHING, + // Normal installation process DOWNLOADING, CHECKSUMING, |