diff options
Diffstat (limited to 'Northstar.CustomServers/mod.json')
-rw-r--r-- | Northstar.CustomServers/mod.json | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/Northstar.CustomServers/mod.json b/Northstar.CustomServers/mod.json index a9e4f36d..6e4d2d58 100644 --- a/Northstar.CustomServers/mod.json +++ b/Northstar.CustomServers/mod.json @@ -24,6 +24,11 @@ }, { + "Path": "sh_northstar_utils.gnut", + "RunOn": "CLIENT || SERVER || UI", + }, + + { "Path": "mp/levels/_lf_maps_shared.gnut", "RunOn": "SERVER && MP" }, @@ -32,11 +37,20 @@ "Path": "gamemodes/sh_gamemodes_custom.gnut", "RunOn": "(CLIENT || SERVER) && MP" }, - { "Path": "sh_remote_functions_mp_custom.gnut", "RunOn": "(CLIENT || SERVER) && MP" }, + { + "Path": "gamemodes/_gamemode_fra.nut", + "RunOn": "SERVER && MP", + "ServerPreCallback": "GamemodeFRA_AddAdditionalInitCallback" + }, + { + "Path": "gamemodes/_featured_mode_settings.gnut", + "RunOn": "SERVER && MP", + "ServerCallback": "FeaturedModeSettings_Init" + }, { "Path": "mp/_classic_mp_dropship_intro.gnut", @@ -52,5 +66,10 @@ "RunOn": "SERVER && MP", "ServerCallback": "SvLoadoutsMP_Init" }, + + { + "Path": "lobby/sh_private_lobby_modes_init.gnut", + "RunOn": "( SERVER || CLIENT ) && MP", + }, ] }
\ No newline at end of file |