aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom
diff options
context:
space:
mode:
authorBarichello <artur@barichello.me>2022-01-16 14:15:31 -0300
committerBarichello <artur@barichello.me>2022-01-16 14:15:31 -0300
commit8b46a591282e257ebde2559a20805cd950a67dc4 (patch)
treee24bff1c35a0660052c4df402a40ed755f1a2910 /Northstar.Custom
parent4880dccba64e0065f7be888f56addcea5eb8208f (diff)
downloadNorthstarMods-8b46a591282e257ebde2559a20805cd950a67dc4.tar.gz
NorthstarMods-8b46a591282e257ebde2559a20805cd950a67dc4.zip
Fix missing mp checks
Diffstat (limited to 'Northstar.Custom')
-rw-r--r--Northstar.Custom/mod.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json
index 6ad41af48..0bf473da7 100644
--- a/Northstar.Custom/mod.json
+++ b/Northstar.Custom/mod.json
@@ -86,7 +86,7 @@
},
{
"Path": "gamemodes/sh_gamemode_sns.gnut",
- "RunOn": "SERVER || CLIENT",
+ "RunOn": "( SERVER || CLIENT ) && MP",
"ServerCallback": {
"Before": "SNSMode_Init"
},
@@ -96,11 +96,11 @@
},
{
"Path": "gamemodes/cl_gamemode_sns.gnut",
- "RunOn": "CLIENT"
+ "RunOn": "CLIENT && MP"
},
{
"Path": "gamemodes/_gamemode_sns.gnut",
- "RunOn": "SERVER"
+ "RunOn": "SERVER && MP"
},
{