diff options
author | Rémy Raes <raes.remy@gmail.com> | 2024-07-30 00:41:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 00:41:10 +0200 |
commit | d5b35ee69a1ad7f9c6515ed70474babfb33519f7 (patch) | |
tree | 010e524f8e49f6890f3a93b1191f0970c9081b2d /.github | |
parent | 7abae6cf8326a768729cc314805606b6a0344f33 (diff) | |
download | NorthstarMods-d5b35ee69a1ad7f9c6515ed70474babfb33519f7.tar.gz NorthstarMods-d5b35ee69a1ad7f9c6515ed70474babfb33519f7.zip |
Only fetch MAD manifesto on server join (#821)
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 '.github')
-rw-r--r-- | .github/nativefuncs.json | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/nativefuncs.json b/.github/nativefuncs.json index 1148d3e5..889432d7 100644 --- a/.github/nativefuncs.json +++ b/.github/nativefuncs.json @@ -503,6 +503,13 @@ "argTypes":"string modName" }, { + "name": "NSFetchVerifiedModsManifesto", + "helpText": "Retrieves the verified mods list from the central authority (GitHub).", + "returnTypeString": "void", + "argTypes": "" + + }, + { "name": "NSIsModDownloadable", "helpText": "checks whether a mod is verified and can be auto-downloaded", "returnTypeString": "bool", |