diff options
author | Barichello <artur@barichello.me> | 2022-01-03 14:25:13 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 14:25:13 -0300 |
commit | 2e34d7e7d16815fd648d3ff5c4d1f9f64d10cf9b (patch) | |
tree | d14337ae6d17ea8d166de099b30db6a6b1f0cd6a /Northstar.Custom/mod.json | |
parent | 4e011f61d4c0350705f914891b69b49de5b8fffc (diff) | |
parent | 8f3f0cfc089f0388862865e4758a130201aca1ce (diff) | |
download | NorthstarMods-2e34d7e7d16815fd648d3ff5c4d1f9f64d10cf9b.tar.gz NorthstarMods-2e34d7e7d16815fd648d3ff5c4d1f9f64d10cf9b.zip |
Merge pull request #56 from x3Karma/main
Add One in the Chamber and The Hidden to available playlists
Diffstat (limited to 'Northstar.Custom/mod.json')
-rw-r--r-- | Northstar.Custom/mod.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json index e817df6d..e687264c 100644 --- a/Northstar.Custom/mod.json +++ b/Northstar.Custom/mod.json @@ -42,6 +42,45 @@ }, { + "Path": "gamemodes/sh_gamemode_chamber.nut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "Before": "Sh_GamemodeChamber_Init" + }, + + "ServerCallback": { + "Before": "Sh_GamemodeChamber_Init" + } + }, + { + "Path": "gamemodes/_gamemode_chamber.nut", + "RunOn": "SERVER && MP" + }, + { + "Path": "gamemodes/cl_gamemode_chamber.nut", + "RunOn": "CLIENT && MP" + }, + { + "Path": "gamemodes/sh_gamemode_hidden.nut", + "RunOn": "( CLIENT || SERVER ) && MP", + "ClientCallback": { + "Before": "Sh_GamemodeHidden_Init" + }, + + "ServerCallback": { + "Before": "Sh_GamemodeHidden_Init" + } + }, + { + "Path": "gamemodes/_gamemode_hidden.nut", + "RunOn": "SERVER && MP" + }, + { + "Path": "gamemodes/cl_gamemode_hidden.nut", + "RunOn": "CLIENT && MP" + }, + + { "Path": "gamemodes/sh_gamemode_fw_custom.nut", "RunOn": "( CLIENT || SERVER ) && MP", "ClientCallback": { |