diff options
author | RoyalBlue1 <malte.hoermeyer@web.de> | 2022-07-15 00:41:36 +0200 |
---|---|---|
committer | RoyalBlue1 <malte.hoermeyer@web.de> | 2022-07-15 00:41:36 +0200 |
commit | 1d9b24faf5280db4b57eea42904f24ff4fdd16ba (patch) | |
tree | 558c8c8aa6b3d044f5fd9e17284177f96ba354f3 /Northstar.CustomServers/mod.json | |
parent | 88d765b41f4ff94c59fa535d53e708274fa22d26 (diff) | |
parent | 85eb27362bd295a9e1560982a3369a688e13ded0 (diff) | |
download | NorthstarMods-1d9b24faf5280db4b57eea42904f24ff4fdd16ba.tar.gz NorthstarMods-1d9b24faf5280db4b57eea42904f24ff4fdd16ba.zip |
Merge remote-tracking branch 'upsteam/main' into gamemode_fd
Diffstat (limited to 'Northstar.CustomServers/mod.json')
-rw-r--r-- | Northstar.CustomServers/mod.json | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Northstar.CustomServers/mod.json b/Northstar.CustomServers/mod.json index 4fbb248d..dba29bc5 100644 --- a/Northstar.CustomServers/mod.json +++ b/Northstar.CustomServers/mod.json @@ -1,7 +1,7 @@ { "Name": "Northstar.CustomServers", "Description": "Attempts to recreate the behaviour of vanilla Titanfall 2 servers, as well as changing some scripts to allow better support for mods", - "Version": "1.5.0", + "Version": "1.9.0", "LoadPriority": 0, "ConVars": [ { @@ -49,6 +49,10 @@ { "Name": "ns_should_log_unknown_clientcommands", "DefaultValue": "1" + }, + { + "Name": "ns_allow_kill_commands", + "DefaultValue": "0" } ], "Scripts": [ @@ -60,6 +64,13 @@ } }, { + "Path": "_northstar_cheatcommands.nut", + "RunOn": "SERVER", + "ServerCallback": { + "After": "NorthstarCheatCommands_Init" + } + }, + { "Path": "_chat.gnut", "RunOn": "SERVER" }, @@ -149,4 +160,4 @@ "RunOn": "( SERVER ) && MP" } ] -}
\ No newline at end of file +} |