diff options
author | Rémy Raes <raes.remy@gmail.com> | 2024-08-29 15:44:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-29 15:44:12 +0200 |
commit | 3d278b3b25fe0b62bec1f196116d175b29c20640 (patch) | |
tree | 2978d63c8705bc2a8d044299debad586c1aa4206 /.github | |
parent | ffc5dfd0b637f56846ac1bb6330dce7544d40762 (diff) | |
download | NorthstarMods-3d278b3b25fe0b62bec1f196116d175b29c20640.tar.gz NorthstarMods-3d278b3b25fe0b62bec1f196116d175b29c20640.zip |
Hide remote mods in mods display (#799)
As they are supposed to be disabled unless joining a server that requires that mod.
Diffstat (limited to '.github')
-rw-r--r-- | .github/nativefuncs.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.github/nativefuncs.json b/.github/nativefuncs.json index 889432d7..11042903 100644 --- a/.github/nativefuncs.json +++ b/.github/nativefuncs.json @@ -19,6 +19,12 @@ "argTypes":"string modName, bool enabled" }, { + "name":"NSIsModRemote", + "helpText":"", + "returnTypeString":"bool", + "argTypes":"string modName" + }, + { "name":"NSGetModDescriptionByModName", "helpText":"", "returnTypeString":"string", @@ -267,6 +273,12 @@ "argTypes":"string modName, bool enabled" }, { + "name":"NSIsModRemote", + "helpText":"", + "returnTypeString":"bool", + "argTypes":"string modName" + }, + { "name":"NSGetModDescriptionByModName", "helpText":"", "returnTypeString":"string", @@ -467,6 +479,12 @@ "argTypes":"string modName, bool enabled" }, { + "name":"NSIsModRemote", + "helpText":"", + "returnTypeString":"bool", + "argTypes":"string modName" + }, + { "name":"NSGetModDescriptionByModName", "helpText":"", "returnTypeString":"string", |