aboutsummaryrefslogtreecommitdiff
path: root/Northstar.CustomServers
diff options
context:
space:
mode:
authorBarichello <artur@barichello.me>2022-01-03 13:19:25 -0300
committerGitHub <noreply@github.com>2022-01-03 13:19:25 -0300
commit9b88727e9791f8df708b2240b0ac3a1eec6fc236 (patch)
tree871624f8df34a080c856752a470a01f95eeea3c2 /Northstar.CustomServers
parent5b7826ec49514a60f1fd6b302aba085ea123b433 (diff)
parent3be21e590e4a070c621e24166707cc1a22b73188 (diff)
downloadNorthstarMods-9b88727e9791f8df708b2240b0ac3a1eec6fc236.tar.gz
NorthstarMods-9b88727e9791f8df708b2240b0ac3a1eec6fc236.zip
Merge pull request #38 from 0neGal/main
fix incorrectly formatted JSON
Diffstat (limited to 'Northstar.CustomServers')
-rw-r--r--Northstar.CustomServers/mod.json18
1 files changed, 9 insertions, 9 deletions
diff --git a/Northstar.CustomServers/mod.json b/Northstar.CustomServers/mod.json
index 40e64cf65..28a08868e 100644
--- a/Northstar.CustomServers/mod.json
+++ b/Northstar.CustomServers/mod.json
@@ -13,7 +13,7 @@
{
"Name": "ns_is_modded_server",
"DefaultValue": "1",
- "Flags": 8192 // FCVAR_REPLICATED
+ "Flags": 8192
},
{
@@ -60,20 +60,20 @@
"Scripts": [
{
"Path": "_misc_stubs.gnut",
- "RunOn": "SERVER && MP",
+ "RunOn": "SERVER && MP"
},
{
"Path": "_store.gnut",
- "RunOn": "SERVER && MP",
+ "RunOn": "SERVER && MP"
},
{
"Path": "_script_movers.gnut",
- "RunOn": "SERVER && MP",
+ "RunOn": "SERVER && MP"
},
{
"Path": "sh_northstar_utils.gnut",
- "RunOn": "CLIENT || SERVER || UI",
+ "RunOn": "CLIENT || SERVER || UI"
},
{
@@ -99,7 +99,7 @@
{
"Path": "mp/_classic_mp_dropship_intro.gnut",
- "RunOn": "SERVER && MP",
+ "RunOn": "SERVER && MP"
},
{
"Path": "mp/_classic_mp_no_intro.gnut",
@@ -116,7 +116,7 @@
{
"Path": "lobby/sh_private_lobby_modes_init.gnut",
- "RunOn": "( SERVER || CLIENT ) && MP",
- },
+ "RunOn": "( SERVER || CLIENT ) && MP"
+ }
]
-} \ No newline at end of file
+}